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