Added rules for compiling IDL files.
[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 # C_SRCS16     : 16-bit C sources for the module
12 # RC_SRCS      : resource source files
13 # SPEC_SRCS    : interface definition files
14 # EXTRA_SRCS   : extra source files for make depend
15 # EXTRA_OBJS   : extra object files
16 # IMPORTS      : dlls to import
17 # DELAYIMPORTS : dlls to import in delayed mode
18 # SUBDIRS      : subdirectories that contain a Makefile
19 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
20 # INSTALLSUBDIRS : subdirectories to run make install/uninstall into
21
22 # First some useful definitions
23
24 SHELL     = /bin/sh
25 CC        = @CC@
26 CPP       = @CPP@
27 CFLAGS    = @CFLAGS@ $(EXTRACFLAGS)
28 OPTIONS   = @OPTIONS@ -D_REENTRANT
29 LIBS      = @LIBS@
30 YACC      = @YACC@
31 LEX       = @LEX@
32 LEXLIB    = @LEXLIB@
33 EXEEXT    = @EXEEXT@
34 OBJEXT    = @OBJEXT@
35 LIBEXT    = @LIBEXT@
36 DLLEXT    = @DLLEXT@
37 CROSSCC   = @CROSSCC@
38 LDSHARED  = @LDSHARED@
39 DLLWRAP   = @DLLWRAP@
40 DLLWRAPFLAGS = --add-stdcall-alias
41 AR        = @AR@ rc
42 RANLIB    = @RANLIB@
43 STRIP     = @STRIP@
44 WINDRES   = @WINDRES@
45 LN        = @LN@
46 LN_S      = @LN_S@
47 TOOLSDIR  = @TOOLSDIR@
48 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
49 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS)
50 LD        = @LD@
51 LDFLAGS   = @LDFLAGS@
52 LDCOMBINE = $(LD) -r
53 RM        = rm -f
54 MV        = mv
55 C2MAN     = @C2MAN@
56 MANSPECS  = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
57             -w $(TOPSRCDIR)/dlls/user/user32.spec \
58             -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
59             -w $(TOPSRCDIR)/dlls/commdlg/comdlg32.spec \
60             -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec
61 LINT      = @LINT@
62 LINTFLAGS = @LINTFLAGS@
63 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
64 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs
65 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
66 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
67 RUNTEST      = $(TOPSRCDIR)/tools/runtest
68 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
69 MAKEDEP      = $(TOOLSDIR)/tools/makedep
70 WRC          = $(TOOLSDIR)/tools/wrc/wrc
71 WMC          = $(TOOLSDIR)/tools/wmc/wmc
72 WIDL         = $(TOOLSDIR)/tools/widl/widl
73 LDPATH    = @LDPATH@
74 DLLDIR    = $(TOPOBJDIR)/dlls
75 LIBWINE   = -L$(TOPOBJDIR)/library -lwine
76 LIBUNICODE= -L$(TOPOBJDIR)/unicode -lwine_unicode
77 LIBUUID   = -L$(TOPOBJDIR)/ole -lwine_uuid
78
79 @SET_MAKE@
80
81 # Installation infos
82
83 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
84 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
85 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
86 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
87 prefix          = @prefix@
88 exec_prefix     = @exec_prefix@
89 bindir          = @bindir@
90 libdir          = @libdir@
91 datadir         = @datadir@
92 infodir         = @infodir@
93 mandir          = @mandir@
94 sysconfdir      = @sysconfdir@
95 includedir      = @includedir@/wine
96 dlldir          = @libdir@/wine
97 prog_manext     = 1
98 conf_manext     = 5
99 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
100                   *.flc *.spec.c *.spec.def *.glue.c *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
101
102 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
103
104 RCOBJS = $(RC_SRCS:.rc=.res.o)
105 LINTS  = $(C_SRCS:.c=.ln)
106
107 # Implicit rules
108
109 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok .cross.o
110
111 .c.o:
112         $(CC) -c $(ALLCFLAGS) -o $@ $<
113
114 .c.cross.o:
115         $(CROSSCC) -c $(ALLCFLAGS) -o $@ $<
116
117 .s.o:
118         $(AS) -o $@ $<
119
120 .mc.mc.rc:
121         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
122
123 .rc.res:
124         $(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ -r $<
125
126 .res.res.o:
127         $(WINDRES) -i $< -o $@
128
129 .spec.spec.c:
130         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ -M $(MODULE) --spec $<
131
132 .spec.spec.def:
133         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --def $<
134
135 .c.ln:
136         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
137
138 .c.ok:
139         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
140
141 # 'all' target first in case the enclosing Makefile didn't define any target
142
143 all: Makefile
144
145 filter:
146         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
147
148 .PHONY: all filter
149
150 # Rule for main module debug channels
151
152 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
153         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
154
155 # Rule to rebuild the tools
156
157 $(MAKEDEP) $(WINEBUILD) $(WMC) $(WRC):
158         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
159
160 # Rules for makefile
161
162 Makefile: Makefile.in $(TOPSRCDIR)/configure
163         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
164         @exit 1
165
166 # Rules for auto documentation
167
168 $(SUBDIRS:%=%/__man__): dummy
169         cd `dirname $@` && $(MAKE) man
170
171 man: $(C_SRCS) $(SUBDIRS:%=%/__man__)
172         if [ -n "$(C_SRCS)" ]; then $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done; fi
173
174 $(SUBDIRS:%=%/__doc_html__): dummy
175         cd `dirname $@` && $(MAKE) doc-html
176
177 doc-html: $(C_SRCS) $(SUBDIRS:%=%/__doc_html__)
178         if [ -n "$(C_SRCS)" ]; then $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done; fi
179
180 .PHONY: man doc-html $(SUBDIRS:%=%/__man__) $(SUBDIRS:%=%/__doc_html__)
181
182 # Rule for linting
183
184 $(MODULE).ln : $(LINTS)
185         if test "$(LINTS)" ; \
186         then \
187                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
188                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
189         else \
190                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
191         fi
192
193 lint:: $(MODULE).ln
194
195 # Rules for Windows API checking
196
197 winapi_check:: dummy
198         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
199
200 .PHONY: winapi_check
201
202 # Rules for dependencies
203
204 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
205         cd `dirname $@` && $(MAKE) depend
206
207 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
208         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(EXTRA_SRCS)
209
210 .PHONY: depend $(SUBDIRS:%=%/__depend__)
211
212 # Rules for cleaning
213
214 $(SUBDIRS:%=%/__clean__): dummy
215         cd `dirname $@` && $(MAKE) clean
216
217 $(SUBDIRS:%=%/__testclean__): dummy
218         cd `dirname $@` && $(MAKE) testclean
219
220 $(EXTRASUBDIRS:%=%/__clean__): dummy
221         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
222
223 testclean:: $(SUBDIRS:%=%/__testclean__)
224
225 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
226         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
227
228 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
229
230 # Rules for installing
231
232 $(INSTALLSUBDIRS:%=%/__install__): dummy
233         cd `dirname $@` && $(MAKE) install
234
235 $(INSTALLSUBDIRS:%=%/__uninstall__): dummy
236         cd `dirname $@` && $(MAKE) uninstall
237
238 install:: $(INSTALLSUBDIRS:%=%/__install__)
239
240 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
241
242 .PHONY: install uninstall $(INSTALLSUBDIRS:%=%/__install__) $(INSTALLSUBDIRS:%=%/__uninstall__)
243
244 # Rules for checking that no imports are missing
245
246 $(SUBDIRS:%=%/__checklink__): dummy
247         @cd `dirname $@` && $(MAKE) checklink
248
249 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
250
251 # Rules for testing
252
253 $(SUBDIRS:%=%/__test__): dummy
254         @cd `dirname $@` && $(MAKE) test
255
256 $(SUBDIRS:%=%/__crosstest__): dummy
257         @cd `dirname $@` && $(MAKE) crosstest
258
259 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
260
261 # Misc. rules
262
263 $(SPEC_SRCS:.spec=.spec.c): $(WINEBUILD)
264
265 $(RC_SRCS:.rc=.res): $(WRC)
266
267 $(RC_SRCS16:.rc=.res): $(WRC)
268
269 $(MC_SRCS:.mc=.mc.rc): $(WMC)
270
271 $(SUBDIRS): dummy
272         @cd $@ && $(MAKE)
273
274 dummy:
275
276 .PHONY: dummy $(SUBDIRS)
277
278 # End of global rules