Authors: Greg Turner <gmturner007@ameritech.net>, Ove Kaaven <ovek@transgaming.com>
[wine/multimedia.git] / Makefile.in
blob72746c40e0bdf27b7b712588d39dc4a779281900
1 # This Makefile understands the following targets:
3 # all (default): build wine
4 # clean: remove all intermediate files
5 # distclean: also remove all files created by configure
6 # test: run tests
7 # testclean: clean test results to force running all tests again
8 # install-lib: install libraries needed to run applications
9 # install-dev: install development environment
10 # install: install everything
11 # uninstall: uninstall everything
12 # depend: create the dependencies
13 # etags: create a TAGS file for Emacs.
14 # manpages: compile manpages for Wine API
17 # Directories
19 TOPSRCDIR = @top_srcdir@
20 TOPOBJDIR = .
21 SRCDIR = @srcdir@
22 VPATH = @srcdir@
23 LIBEXT = @LIBEXT@
24 LDCONFIG = @LDCONFIG@
25 LDD = @LDD@
26 MODULE = none
28 # Sub-directories to run make depend/clean into
29 SUBDIRS = \
30 dlls \
31 documentation \
32 include \
33 library \
34 miscemu \
35 ole \
36 programs \
37 server \
38 tools \
39 unicode
41 # Sub-directories to install for install-lib
42 INSTALLLIBSUBDIRS = \
43 dlls \
44 documentation \
45 library \
46 miscemu \
47 programs \
48 server \
49 unicode
51 # Sub-directories to install for install-dev
52 INSTALLDEVSUBDIRS = \
53 include \
54 ole \
55 tools
57 INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
59 # Sub-directories to run make test into
60 TESTSUBDIRS = \
61 dlls \
62 programs
64 all: Make.rules wine
65 @echo "Wine build complete."
67 WINAPI_CHECK_EXTRA_FLAGS = --global
69 @MAKE_RULES@
71 Make.rules: Make.rules.in configure
72 @echo $? is newer than 'Make.rules', please rerun ./configure!
73 @exit 1
75 wine: $(WINEWRAPPER)
76 $(RM) $@ && $(LN_S) $(WINEWRAPPER) $@
78 # Installation rules
80 install-aclocal: dummy
81 $(MKINSTALLDIRS) $(datadir)/aclocal
82 $(INSTALL_DATA) $(SRCDIR)/aclocal.m4 $(datadir)/aclocal/wine.m4
84 install-lib:: $(INSTALLLIBSUBDIRS:%=%/__install__)
86 install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__) install-aclocal
88 install:: install-aclocal
89 -$(LDCONFIG)
90 @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \
91 then \
92 echo "*************************************************" ; \
93 echo "*************************************************" ; \
94 echo "The installed Wine libraries will not be found!" ; \
95 echo "You can either:" ; \
96 echo " Add the line '$(libdir)' to /etc/ld.so.conf" ; \
97 echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(libdir)' ; \
98 echo "*************************************************" ; \
99 echo "*************************************************" ; \
102 uninstall::
103 $(RM) $(datadir)/aclocal/wine.m4
104 -rmdir $(datadir)/aclocal
106 .PHONY: install-aclocal install-lib install-dev
108 # Dependencies between directories
110 all: $(SUBDIRS)
111 dlls: library ole tools unicode
112 server: library tools unicode
113 miscemu programs: dlls library ole tools unicode
114 tools: library unicode
116 dlls/__install__: library ole tools unicode
117 server/__install__: library tools unicode
118 miscemu/__install__ programs/__install__: library ole tools unicode dlls/__install__
119 library/__install__: library
120 ole/__install__: ole
121 tools/__install__: tools
122 unicode/__install__: unicode
124 # Test rules
126 checklink:: $(TESTSUBDIRS:%=%/__checklink__)
127 $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
129 check test:: wine $(TESTSUBDIRS:%=%/__test__)
131 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
133 # Misc rules
135 TAGS etags:
136 etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
138 manpages:
139 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
140 for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
142 htmlpages:
143 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html
144 for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
146 clean::
147 $(RM) wine
149 distclean: clean
150 $(RM) config.* configure.lineno TAGS Make.rules dlls/Makedll.rules dlls/Maketest.rules programs/Makeprog.rules include/config.h
151 $(RM) -r autom4te.cache
152 $(RM) `find . \( -name Makefile -o -size 0 \) -print`
154 .PHONY: manpages htmlpages distclean
156 ### Dependencies: