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
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
19 TOPSRCDIR = @top_srcdir@
28 # Sub-directories to run make depend/clean into
41 # Sub-directories to install for install-lib
51 # Sub-directories to install for install-dev
57 INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
59 # Sub-directories to run make test into
65 @echo "Wine build complete."
67 WINAPI_CHECK_EXTRA_FLAGS = --global
71 Make.rules: Make.rules.in configure
72 @echo $? is newer than 'Make.rules', please rerun ./configure!
76 $(RM) $@ && $(LN_S) $(WINEWRAPPER) $@
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
90 @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \
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 "*************************************************" ; \
103 $(RM) $(datadir)/aclocal/wine.m4
104 -rmdir $(datadir)/aclocal
106 .PHONY: install-aclocal install-lib install-dev
108 # Dependencies between directories
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
121 tools/__install__: tools
122 unicode/__install__: unicode
126 checklink:: $(TESTSUBDIRS:%=%/__checklink__)
127 $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
129 check test:: wine $(TESTSUBDIRS:%=%/__test__)
131 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
136 etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
139 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
140 for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
143 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html
144 for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
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