Merged msacm and msacm32 dlls.
[wine] / Make.rules.in
1 # Global rules shared by all makefiles     -*-Makefile-*-
2 #
3 # Each individual makefile must define the following variables:
4 # TOPSRCDIR    : top-level source directory
5 # TOPOBJDIR    : top-level object directory
6 # SRCDIR       : source directory for this module
7 # MODULE       : name of the module being built
8 #
9 # Each individual makefile may define the following additional variables:
10 # C_SRCS       : C sources for the module
11 # ASM_SRCS     : assembly sources
12 # GEN_C_SRCS   : generated C files
13 # GEN_ASM_SRCS : generated assembly sources
14 # RC_SRCS      : resource source files
15 # SPEC_SRCS    : interface definition files
16 # GLUE         : C sources for which glue code needs to be generated
17 # EXTRA_SRCS   : extra source files for make depend
18 # EXTRA_OBJS   : extra object files
19 # WRCEXTRA     : extra wrc flags (e.g. '-p _SysRes')
20 # SUBDIRS      : subdirectories that contain a Makefile
21 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
22
23 # First some useful definitions
24
25 SHELL     = /bin/sh
26 CC        = @CC@
27 CPP       = @CPP@
28 CFLAGS    = @CFLAGS@
29 OPTIONS   = @OPTIONS@ -D_REENTRANT
30 X_CFLAGS  = @X_CFLAGS@
31 X_LIBS    = @X_LIBS@
32 XLIB      = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
33 DLL_LINK  = @DLL_LINK@
34 LIBS      = @LIBS@
35 YACC      = @YACC@
36 LEX       = @LEX@
37 LEXLIB    = @LEXLIB@
38 RANLIB    = @RANLIB@
39 LN_S      = @LN_S@
40 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include
41 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
42 LDCOMBINE = ld -r
43 AR        = ar rc
44 RM        = rm -f
45 MV        = mv
46 MKDIR     = mkdir -p
47 C2MAN     = @C2MAN@
48 MANSPECS  = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
49             -w $(TOPSRCDIR)/dlls/user/user32.spec \
50             -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
51             -w $(TOPSRCDIR)/dlls/comdlg32/comdlg32.spec \
52             -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec 
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
56 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
57 BUILD     = $(TOPOBJDIR)/tools/winebuild/winebuild
58 MAKEDEP   = $(TOPOBJDIR)/tools/makedep
59 WRC       = $(TOPOBJDIR)/tools/wrc/wrc
60 WRCFLAGS  = -c -s -p $*
61 WMC       = $(TOPOBJDIR)/tools/wmc/wmc
62 DLLDIR    = $(TOPOBJDIR)/dlls
63 @SET_MAKE@
64
65 # Installation infos
66
67 INSTALL         = @INSTALL@
68 INSTALL_PROGRAM = @INSTALL_PROGRAM@
69 INSTALL_DATA    = @INSTALL_DATA@
70 prefix          = @prefix@
71 exec_prefix     = @exec_prefix@
72 bindir          = @bindir@
73 libdir          = @libdir@
74 infodir         = @infodir@
75 mandir          = @mandir@
76 prog_manext     = 1
77 conf_manext     = 5
78 includedir      = @includedir@/wine
79 CLEAN_FILES     = *.o *.a *.so *.ln \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
80                   *.flc *.spec.c *.glue.c y.tab.c y.tab.h lex.yy.c core
81
82 OBJS = $(SPEC_SRCS:.spec=.spec.o) $(C_SRCS:.c=.o) $(GEN_C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) \
83        $(ASM_SRCS:.S=.o) $(RC_SRCS:.rc=.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
84
85 LINTS = $(C_SRCS:.c=.ln)
86
87 # DLL list
88
89 X_DLLS = \
90         ddraw \
91         @OPENGL32_DLL@ \
92         x11drv
93
94 DLLS = \
95         @X_DLLS@ \
96         avifil32 \
97         comctl32 \
98         comdlg32 \
99         crtdll \
100         dciman32 \
101         dinput \
102         dplay \
103         dplayx \
104         dsound \
105         gdi32 \
106         icmp \
107         imagehlp \
108         imm32 \
109         joystick.drv \
110         kernel32 \
111         lz32 \
112         mcianim.drv \
113         mciavi.drv \
114         mcicda.drv \
115         mciseq.drv \
116         mciwave.drv \
117         midimap.drv \
118         mpr \
119         msacm.drv \
120         msacm32 \
121         msnet32 \
122         msvfw32 \
123         odbc32 \
124         ole32 \
125         oleaut32 \
126         olecli32 \
127         oledlg \
128         olepro32 \
129         olesvr32 \
130         psapi \
131         rasapi32 \
132         riched32 \
133         rpcrt4 \
134         serialui \
135         setupapi \
136         setupx \
137         shell32 \
138         shfolder \
139         shlwapi \
140         sound \
141         stress \
142         tapi32 \
143         ttydrv \
144         urlmon \
145         user32 \
146         version \
147         w32skrnl \
148         wineoss.drv \
149         wineps \
150         wing \
151         wininet \
152         winmm \
153         winspool.drv \
154         wnaspi32 \
155         wow32 \
156         ws2_32 \
157         wsock32
158
159 # Implicit rules
160
161 .SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c
162
163 .c.o:
164         $(CC) -c $(ALLCFLAGS) -o $*.o $<
165
166 .spec.c.spec.o:
167         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
168
169 .s.o:
170         $(AS) -o $*.o $<  
171
172 .S.o:
173         $(CC) -c -o $*.o $<  
174
175 .rc.s:
176         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
177
178 .rc.h:
179         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
180
181 .rc.res:
182         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
183
184 .res.s:
185         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
186
187 .res.h:
188         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
189
190 .spec.spec.c:
191         $(BUILD) @DLLFLAGS@ -o $@ -spec $<
192
193 .c.glue.c:
194         $(BUILD) @DLLFLAGS@ -o $@ -glue $<
195
196 .c.ln:
197         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
198
199 .PHONY: all install uninstall clean distclean depend dummy
200
201 # 'all' target first in case the enclosing Makefile didn't define any target
202
203 all: Makefile
204
205 # Rule to rebuild the resource compiler
206
207 $(WRC) check_wrc:
208         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc
209
210 # Rule to rebuild the message compiler
211
212 $(WMC) check_wmc:
213         cd $(TOPOBJDIR)/tools/wmc && $(MAKE) wmc
214
215 # Rule to rebuild the 'makedep' program
216
217 $(MAKEDEP) check_makedep:
218         cd $(TOPOBJDIR)/tools && $(MAKE) makedep
219
220 # Rule to rebuild the 'winebuild' program
221
222 $(BUILD) check_winebuild:
223         cd $(TOPOBJDIR)/tools/winebuild && $(MAKE) winebuild
224
225 # Rule for main module
226
227 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
228         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
229
230 # Rules for makefile
231
232 Makefile: Makefile.in $(TOPSRCDIR)/configure
233         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
234         @exit 1
235
236 # Rules for auto documentation
237
238 man: $(C_SRCS)
239         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
240
241 html: $(C_SRCS)
242         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
243
244 # Rule for linting
245
246 $(MODULE).ln : $(LINTS)
247         if test "$(LINTS)" ; \
248         then \
249                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
250                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
251         else \
252                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
253         fi
254
255 lint:: $(MODULE).ln
256
257 # Rules for Windows API checking
258
259 winapi_check::
260         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
261
262 # Rules for dependencies
263
264 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
265         cd `dirname $@` && $(MAKE) depend
266
267 depend: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
268         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
269
270 # Rules for cleaning
271
272 $(SUBDIRS:%=%/__clean__): dummy
273         cd `dirname $@` && $(MAKE) clean
274
275 $(EXTRASUBDIRS:%=%/__clean__): dummy
276         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
277
278 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
279         $(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(PROGRAMS)
280
281 # Rules for installing
282
283 $(SUBDIRS:%=%/__install__): dummy
284         cd `dirname $@` && $(MAKE) install
285
286 $(SUBDIRS:%=%/__uninstall__): dummy
287         cd `dirname $@` && $(MAKE) uninstall
288
289 # Misc. rules
290
291 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
292
293 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
294
295 $(RC_SRCS:.rc=.s): $(WRC)
296
297 $(SUBDIRS): dummy
298         @cd $@ && $(MAKE)
299
300 dummy:
301
302 # End of global rules