Moved shared crtdll/ntdll functions into ntdll.
[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)/relay32/gdi32.spec \
49             -w $(TOPSRCDIR)/relay32/user32.spec \
50             -w $(TOPSRCDIR)/relay32/comctl32.spec \
51             -w $(TOPSRCDIR)/relay32/comdlg32.spec \
52             -w $(TOPSRCDIR)/relay32/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/build
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         dplayx \
103         dsound \
104         gdi32 \
105         icmp \
106         imagehlp \
107         imm32 \
108         joystick.drv \
109         kernel32 \
110         lz32 \
111         mcianim.drv \
112         mciavi.drv \
113         mcicda.drv \
114         mciseq.drv \
115         mciwave.drv \
116         midimap.drv \
117         mpr \
118         msacm \
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         setupx \
134         shell32 \
135         sound \
136         stress \
137         tapi32 \
138         ttydrv \
139         urlmon \
140         user32 \
141         version \
142         w32skrnl \
143         win87em \
144         windebug \
145         wineoss.drv \
146         wineps \
147         wing \
148         wininet \
149         winmm \
150         winspool.drv \
151         wnaspi32 \
152         wsock32
153
154 # Implicit rules
155
156 .SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c
157
158 .c.o:
159         $(CC) -c $(ALLCFLAGS) -o $*.o $<
160
161 .spec.c.spec.o:
162         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
163
164 .s.o:
165         $(AS) -o $*.o $<  
166
167 .S.o:
168         $(CC) -c -o $*.o $<  
169
170 .rc.s:
171         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
172
173 .rc.h:
174         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
175
176 .rc.res:
177         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
178
179 .res.s:
180         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
181
182 .res.h:
183         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
184
185 .spec.spec.c:
186         $(BUILD) @BUILDFLAGS@ -o $@ -spec $<
187
188 .c.glue.c:
189         $(BUILD) @BUILDFLAGS@ -o $@ -glue $<
190
191 .c.ln:
192         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
193
194 .PHONY: all install uninstall clean distclean depend dummy
195
196 # 'all' target first in case the enclosing Makefile didn't define any target
197
198 all: Makefile
199
200 # Rule to rebuild the resource compiler
201
202 $(WRC) check_wrc:
203         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc
204
205 # Rule to rebuild the message compiler
206
207 $(WMC) check_wmc:
208         cd $(TOPOBJDIR)/tools/wmc && $(MAKE) wmc
209
210 # Rule to rebuild the 'makedep' program
211
212 $(MAKEDEP) check_makedep:
213         cd $(TOPOBJDIR)/tools && $(MAKE) makedep
214
215 # Rule to rebuild the 'build' program
216
217 $(BUILD) checkbuild:
218         cd $(TOPOBJDIR)/tools && $(MAKE) build
219
220 # Rule for main module
221
222 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
223         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
224
225 # Rules for makefile
226
227 Makefile: Makefile.in $(TOPSRCDIR)/configure
228         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
229         @exit 1
230
231 # Rules for auto documentation
232
233 man: $(C_SRCS)
234         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
235
236 html: $(C_SRCS)
237         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
238
239 # Rule for linting
240
241 $(MODULE).ln : $(LINTS)
242         if test "$(LINTS)" ; \
243         then \
244                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
245                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
246         else \
247                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
248         fi
249
250 lint:: $(MODULE).ln
251
252 # Rules for Windows API checking
253
254 winapi_check::
255         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
256
257 # Rules for dependencies
258
259 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
260         cd `dirname $@` && $(MAKE) depend
261
262 depend: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
263         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
264
265 # Rules for cleaning
266
267 $(SUBDIRS:%=%/__clean__): dummy
268         cd `dirname $@` && $(MAKE) clean
269
270 $(EXTRASUBDIRS:%=%/__clean__): dummy
271         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
272
273 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
274         $(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(PROGRAMS)
275
276 # Rules for installing
277
278 $(SUBDIRS:%=%/__install__): dummy
279         cd `dirname $@` && $(MAKE) install
280
281 $(SUBDIRS:%=%/__uninstall__): dummy
282         cd `dirname $@` && $(MAKE) uninstall
283
284 # Misc. rules
285
286 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
287
288 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
289
290 $(RC_SRCS:.rc=.s): $(WRC)
291
292 $(SUBDIRS): dummy
293         @cd $@ && $(MAKE)
294
295 dummy:
296
297 # End of global rules