Fix some types and function prototypes according to Platform SDK
[wine/multimedia.git] / Makefile.in
blob9d7a7d4be971118584d68af085b216ff98baace7
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 EMUOBJS = \
65 miscemu/miscemu.o
67 all: Make.rules wine
68 @echo "Wine build complete."
70 WINAPI_CHECK_EXTRA_FLAGS = --global
72 @MAKE_RULES@
74 Make.rules: Make.rules.in configure
75 @echo $? is newer than 'Make.rules', please rerun ./configure!
76 @exit 1
78 wine: $(WINEWRAPPER)
79 $(RM) $@ && $(LN_S) $(WINEWRAPPER) $@
81 # Installation rules
83 install-aclocal: dummy
84 $(MKINSTALLDIRS) $(datadir)/aclocal
85 $(INSTALL_DATA) $(SRCDIR)/aclocal.m4 $(datadir)/aclocal/wine.m4
87 install-lib:: $(INSTALLLIBSUBDIRS:%=%/__install__)
89 install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__) install-aclocal
91 install:: install-aclocal
92 -$(LDCONFIG)
93 @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \
94 then \
95 echo "*************************************************" ; \
96 echo "*************************************************" ; \
97 echo "The installed Wine libraries will not be found!" ; \
98 echo "You can either:" ; \
99 echo " Add the line '$(libdir)' to /etc/ld.so.conf" ; \
100 echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(libdir)' ; \
101 echo "*************************************************" ; \
102 echo "*************************************************" ; \
105 uninstall::
106 $(RM) $(datadir)/aclocal/wine.m4
107 -rmdir $(datadir)/aclocal
109 .PHONY: install-aclocal install-lib install-dev
111 # Dependencies between directories
113 all: $(SUBDIRS)
114 dlls: library ole tools unicode
115 server: library tools unicode
116 miscemu programs: dlls library ole tools unicode
117 tools: library unicode
119 dlls/__install__: library ole tools unicode
120 server/__install__: library tools unicode
121 miscemu/__install__ programs/__install__: library ole tools unicode dlls/__install__
122 library/__install__: library
123 ole/__install__: ole
124 tools/__install__: tools
125 unicode/__install__: unicode
127 # Test rules
129 checklink:: $(TESTSUBDIRS:%=%/__checklink__)
130 $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
132 check test:: $(TESTSUBDIRS:%=%/__test__)
134 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
136 # Misc rules
138 TAGS etags:
139 etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
141 manpages:
142 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
143 for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
145 htmlpages:
146 $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html
147 for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
149 clean::
150 $(RM) wine
152 distclean: clean
153 $(RM) config.* configure.lineno TAGS Make.rules dlls/Makedll.rules dlls/Maketest.rules programs/Makeprog.rules include/config.h
154 $(RM) -r autom4te.cache
155 $(RM) `find . \( -name Makefile -o -size 0 \) -print`
157 .PHONY: manpages htmlpages distclean
159 ### Dependencies: