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-lib:: $(INSTALLLIBSUBDIRS:%=%/__install__)
87 install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__)
91 @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \
93 echo "*************************************************" ; \
94 echo "*************************************************" ; \
95 echo "The installed Wine libraries will not be found!" ; \
96 echo "You can either:" ; \
97 echo " Add the line '$(libdir)' to /etc/ld.so.conf" ; \
98 echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(libdir)' ; \
99 echo "*************************************************" ; \
100 echo "*************************************************" ; \
103 .PHONY: install-lib install-dev
105 # Dependencies between directories
107 all: dlls library miscemu ole programs server tools tsx11 unicode
108 dlls: library ole tools tsx11 unicode
109 server: library tools unicode
110 miscemu programs: dlls library ole tools tsx11 unicode
111 tools: library unicode
113 dlls/__install__: library ole tools tsx11 unicode
114 server/__install__: library tools unicode
115 miscemu/__install__ programs/__install__: library ole tools tsx11 unicode dlls/__install__
116 library/__install__: library
118 tools/__install__: tools
119 unicode/__install__: unicode
124 $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
127 @cd dlls && $(MAKE) checklink
128 @cd programs && $(MAKE) checklink
130 test_environment: dummy
131 @cd programs/winetest && $(MAKE) all
133 $(TESTSUBDIRS:%=%/__test__): test_environment
135 check test:: $(TESTSUBDIRS:%=%/__test__)
137 .PHONY: checklink test_environment
142 etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
145 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
146 for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
149 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html
150 for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
156 $(RM) config.* TAGS Make.rules dlls/Makedll.rules programs/Makeprog.rules include/config.h
157 $(RM) -r autom4te.cache
158 $(RM) `find . \( -name Makefile -o -size 0 \) -print`
160 .PHONY: manpages htmlpages distclean