ole32: Fix a typo in PropertyStorage_WritePropertyToStream that caused the wrong...
[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 # EXTRA_SRCS   : extra source files for make depend
14 # EXTRA_OBJS   : extra object files
15 # IMPORTS      : dlls to import
16 # DELAYIMPORTS : dlls to import in delayed mode
17 # SUBDIRS      : subdirectories that contain a Makefile
18 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
19 # INSTALLSUBDIRS : subdirectories to run make install/uninstall into
20 # MODCFLAGS    : extra CFLAGS for this module
21
22 # First some useful definitions
23
24 SHELL     = /bin/sh
25 CC        = @CC@
26 CFLAGS    = @CFLAGS@
27 CPPFLAGS  = @CPPFLAGS@
28 LIBS      = @LIBS@
29 BISON     = @BISON@
30 FLEX      = @FLEX@
31 EXEEXT    = @EXEEXT@
32 OBJEXT    = @OBJEXT@
33 LIBEXT    = @LIBEXT@
34 DLLEXT    = @DLLEXT@
35 TOOLSEXT  = @TOOLSEXT@
36 IMPLIBEXT = @IMPLIBEXT@
37 LDSHARED  = @LDSHARED@
38 DLLTOOL   = @DLLTOOL@
39 DLLWRAP   = @DLLWRAP@
40 AR        = @AR@
41 ARFLAGS   = @ARFLAGS@
42 RANLIB    = @RANLIB@
43 STRIP     = @STRIP@
44 LN        = @LN@
45 LN_S      = @LN_S@
46 TOOLSDIR  = @TOOLSDIR@
47 LDFLAGS   = @LDFLAGS@
48 PRELINK   = @PRELINK@
49 RM        = rm -f
50 MV        = mv
51 LINT      = @LINT@
52 LINTFLAGS = @LINTFLAGS@
53 FONTFORGE = @FONTFORGE@
54 RSVG      = @RSVG@
55 ICOTOOL   = @ICOTOOL@
56 FAKEEXT   = $(DLLEXT:.so=.fake)
57 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
58 EXTRACFLAGS  = @EXTRACFLAGS@
59 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
60 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
61 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
62 TARGETFLAGS  = @TARGETFLAGS@
63 WINEBUILDFLAGS = $(TARGETFLAGS) $(DLLFLAGS)
64 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
65 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
66 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
67 C2MAN        = $(TOPSRCDIR)/tools/c2man.pl
68 RUNTEST      = $(TOPSRCDIR)/tools/runtest
69 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
70 MAKEDEP      = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
71 MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
72 WRC          = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
73 WMC          = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
74 WIDL         = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
75 WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR)
76 RELPATH      = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
77 SFNT2FNT     = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
78 RC           = $(WRC)
79 RC16         = $(WRC)
80 RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
81 RC16FLAGS    = -O res16 $(RCFLAGS)
82 LDPATH       = @LDPATH@
83 DLLDIR       = $(TOPOBJDIR)/dlls
84 LIBPORT      = $(TOPOBJDIR)/libs/port/libwine_port.a
85 LIBWPP       = $(TOPOBJDIR)/libs/wpp/libwpp.a
86 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
87 LDRPATH_INSTALL = @LDRPATH_INSTALL@
88 LDRPATH_LOCAL   = @LDRPATH_LOCAL@
89
90 @SET_MAKE@
91
92 # Installation infos
93
94 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
95 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
96 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
97 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
98 prefix          = @prefix@
99 exec_prefix     = @exec_prefix@
100 bindir          = @bindir@
101 libdir          = @libdir@
102 datarootdir     = @datarootdir@
103 datadir         = @datadir@
104 infodir         = @infodir@
105 mandir          = @mandir@
106 sysconfdir      = @sysconfdir@
107 includedir      = @includedir@/wine
108 dlldir          = @libdir@/wine
109 fakedlldir      = $(dlldir)/fakedlls
110 prog_manext     = 1
111 api_manext      = 3w
112 conf_manext     = 5
113 CLEAN_FILES     = *.o *.a *.so *.ln *.res *.fake *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
114
115 IDL_GEN_C_SRCS  = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
116                   $(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
117 IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
118                   $(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
119
120 CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:%=dlldata.c) \
121                 $(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
122
123 OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) \
124        $(RC_SRCS:.rc=.res) $(MC_SRCS:.mc=.mc.res) $(EXTRA_OBJS)
125
126 LINTS  = $(C_SRCS:.c=.ln)
127
128 # 'all' target first in case the enclosing Makefile didn't define any target
129
130 all:
131
132 filter: dummy
133         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
134
135 .PHONY: all filter
136
137 # Implicit rules
138
139 .SUFFIXES: .mc .rc .mc.rc .res .spec .spec.o .idl .tlb .h .y .l .tab.c .tab.h .yy.c .ok .man.in .man _c.c _i.c _p.c _s.c @MAINTAINER_MODE@ .sfd .ttf .svg .ico
140
141 .c.o:
142         $(CC) -c $(ALLCFLAGS) -o $@ $<
143
144 .y.tab.c:
145         $(BISON) $(BISONFLAGS) -p $*_ -o $@ $<
146
147 .y.tab.h:
148         $(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<
149
150 .l.yy.c:
151         $(FLEX) $(LEXFLAGS) -o$@ $<
152
153 .mc.mc.rc:
154         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
155
156 .rc.res:
157         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
158
159 .spec.spec.o:
160         $(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
161
162 .idl.h:
163         $(WIDL) $(IDLFLAGS) -h -H $@ $<
164
165 .idl_c.c:
166         $(WIDL) $(IDLFLAGS) -c -C $@ $<
167
168 .idl_i.c:
169         $(WIDL) $(IDLFLAGS) -u -U $@ $<
170
171 .idl_p.c:
172         $(WIDL) $(IDLFLAGS) -p -P $@ $<
173
174 .idl_s.c:
175         $(WIDL) $(IDLFLAGS) -s -S $@ $<
176
177 .idl.tlb:
178         $(WIDL) $(TARGETFLAGS) $(IDLFLAGS) -t -T $@ $<
179
180 .c.ln:
181         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
182
183 .c.ok:
184         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
185
186 .sfd.ttf:
187         $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
188
189 .man.in.man:
190         LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
191
192 .svg.ico:
193         $(RSVG) -w 16 -h 16 -f png $< $*-16.png
194         $(RSVG) -w 32 -h 32 -f png $< $*-32.png
195         $(RSVG) -w 48 -h 48 -f png $< $*-48.png
196         $(ICOTOOL) -c -o $@ $*-16.png $*-32.png $*-48.png
197         $(RM) $*-16.png $*-32.png $*-48.png
198
199 # Rules for IDL files
200
201 dlldata.c: $(WIDL) Makefile.in
202         $(WIDL) $(IDLFLAGS) --dlldata-only --dlldata=$@ $(IDL_P_SRCS)
203
204 # Rule for linting
205
206 $(MODULE).ln : $(LINTS)
207         if test "$(LINTS)" ; \
208         then \
209                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
210                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
211         else \
212                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
213         fi
214
215 lint:: $(MODULE).ln
216
217 # Rules for Windows API checking
218
219 winapi_check:: dummy
220         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
221
222 .PHONY: winapi_check
223
224 # Rules for dependencies
225
226 DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) \
227               $(IDL_H_SRCS) $(IDL_C_SRCS) $(IDL_I_SRCS) $(IDL_P_SRCS) $(IDL_S_SRCS) \
228               $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS) $(IDL_TLB_SRCS:.idl=.tlb) \
229               $(BISON_SRCS) $(LEX_SRCS) $(EXTRA_SRCS)
230
231 $(SUBDIRS:%=%/__depend__): dummy
232         @cd `dirname $@` && $(MAKE) depend
233
234 depend: $(SUBDIRS:%=%/__depend__) dummy
235         $(MAKEDEP) $(MAKEDEPFLAGS) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(DEPEND_SRCS)
236
237 .PHONY: depend $(SUBDIRS:%=%/__depend__)
238
239 # Rules for cleaning
240
241 $(SUBDIRS:%=%/__clean__): dummy
242         @cd `dirname $@` && $(MAKE) clean
243
244 $(EXTRASUBDIRS:%=%/__clean__): dummy
245         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
246
247 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
248         $(RM) $(CLEAN_FILES) $(CLEAN_TARGETS) $(PROGRAMS) $(MANPAGES)
249
250 .PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
251
252 # Rules for installing
253
254 $(SUBDIRS:%=%/__install__): dummy
255         @cd `dirname $@` && $(MAKE) install
256
257 $(SUBDIRS:%=%/__install-lib__): dummy
258         @cd `dirname $@` && $(MAKE) install-lib
259
260 $(SUBDIRS:%=%/__install-dev__): dummy
261         @cd `dirname $@` && $(MAKE) install-dev
262
263 $(SUBDIRS:%=%/__uninstall__): dummy
264         @cd `dirname $@` && $(MAKE) uninstall
265
266 install:: $(INSTALLSUBDIRS:%=%/__install__) dummy
267 install-lib:: $(INSTALLSUBDIRS:%=%/__install-lib__) dummy
268 install-dev:: $(INSTALLSUBDIRS:%=%/__install-dev__) dummy
269 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__) dummy
270
271 $(INSTALLDIRS):
272         $(MKINSTALLDIRS) $@
273
274 .PHONY: install install-lib install-dev uninstall \
275         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
276         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
277
278 # Rules for testing
279
280 $(TESTSUBDIRS:%=%/__test__): dummy
281         @cd `dirname $@` && $(MAKE) test
282
283 $(TESTSUBDIRS:%=%/__crosstest__): dummy
284         @cd `dirname $@` && $(MAKE) crosstest
285
286 $(TESTSUBDIRS:%=%/__testclean__): dummy
287         @cd `dirname $@` && $(MAKE) testclean
288
289 check test:: $(TESTSUBDIRS:%=%/__test__) dummy
290
291 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__) dummy
292
293 testclean:: $(TESTSUBDIRS:%=%/__testclean__) dummy
294
295 .PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 
296
297 # Rules for auto documentation
298
299 $(DOCSUBDIRS:%=%/__man__): dummy
300         @cd `dirname $@` && $(MAKE) man
301
302 $(DOCSUBDIRS:%=%/__doc_html__): dummy
303         @cd `dirname $@` && $(MAKE) doc-html
304
305 $(DOCSUBDIRS:%=%/__doc_sgml__): dummy
306         @cd `dirname $@` && $(MAKE) doc-sgml
307
308 $(DOCSUBDIRS:%=%/__doc_xml__): dummy
309         @cd `dirname $@` && $(MAKE) doc-xml
310
311 man: $(DOCSUBDIRS:%=%/__man__)
312 doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
313 doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)
314 doc-xml: $(DOCSUBDIRS:%=%/__doc_xml__)
315
316 .PHONY: man doc-html doc-sgml doc-xml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__) $(DOCSUBDIRS:%=%/__doc_xml__)
317
318 # Misc. rules
319
320 $(MC_SRCS:.mc=.mc.rc): $(WMC)
321
322 $(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
323
324 $(RC_SRCS:.rc=.res) $(MC_SRCS:.mc=.mc.res) $(RC_SRCS16:.rc=.res): $(WRC)
325
326 $(SUBDIRS): dummy
327         @cd $@ && $(MAKE)
328
329 dummy:
330
331 .PHONY: dummy $(SUBDIRS)
332
333 # End of global rules