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
42 # Sub-directories to install for install-lib
53 # Sub-directories to install for install-dev
59 INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
61 # Sub-directories to run make test into
70 @echo "Wine build complete."
72 WINAPI_CHECK_EXTRA_FLAGS = --global
76 Make.rules: Make.rules.in configure
77 @echo $? is newer than 'Make.rules', please rerun ./configure!
81 $(RM) $@ && $(LN_S) $(WINEWRAPPER) $@
85 install-aclocal: dummy
86 $(MKINSTALLDIRS) $(datadir)/aclocal
87 $(INSTALL_DATA) $(SRCDIR)/aclocal.m4 $(datadir)/aclocal/wine.m4
89 install-lib:: $(INSTALLLIBSUBDIRS:%=%/__install__)
91 install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__) install-aclocal
93 install:: install-aclocal
95 @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \
97 echo "*************************************************" ; \
98 echo "*************************************************" ; \
99 echo "The installed Wine libraries will not be found!" ; \
100 echo "You can either:" ; \
101 echo " Add the line '$(libdir)' to /etc/ld.so.conf" ; \
102 echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(libdir)' ; \
103 echo "*************************************************" ; \
104 echo "*************************************************" ; \
108 $(RM) $(datadir)/aclocal/wine.m4
109 -rmdir $(datadir)/aclocal
111 .PHONY: install-aclocal install-lib install-dev
113 # Dependencies between directories
116 dlls: library ole tools tsx11 unicode
117 server: library tools unicode
118 miscemu programs: dlls library ole tools tsx11 unicode
119 tools: library unicode
121 dlls/__install__: library ole tools tsx11 unicode
122 server/__install__: library tools unicode
123 miscemu/__install__ programs/__install__: library ole tools tsx11 unicode dlls/__install__
124 library/__install__: library
126 tools/__install__: tools
127 unicode/__install__: unicode
131 checklink:: $(TESTSUBDIRS:%=%/__checklink__)
132 $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
134 test_environment: dummy
135 @cd programs/winetest && $(MAKE) test_environment
137 $(TESTSUBDIRS:%=%/__test__): test_environment
139 check test:: $(TESTSUBDIRS:%=%/__test__)
141 .PHONY: test_environment
146 etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
149 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
150 for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
153 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html
154 for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
160 $(RM) config.* TAGS Make.rules dlls/Makedll.rules programs/Makeprog.rules include/config.h
161 $(RM) -r autom4te.cache
162 $(RM) `find . \( -name Makefile -o -size 0 \) -print`
164 .PHONY: manpages htmlpages distclean