makefiles: Consider all .res files as object files.
[wine/multimedia.git] / Make.rules.in
blobb224ef16fc10a41cf5a9dfa0d5b881693d3891d2
1 # Global rules shared by all makefiles     -*-Makefile-*-
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
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
22 # First some useful definitions
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 WINDRES   = @WINDRES@
44 LN        = @LN@
45 LN_S      = @LN_S@
46 TOOLSDIR  = @TOOLSDIR@
47 AS        = @AS@
48 LD        = @LD@
49 LDFLAGS   = @LDFLAGS@
50 PRELINK   = @PRELINK@
51 RM        = rm -f
52 MV        = mv
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 FONTFORGE = @FONTFORGE@
56 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
57 EXTRACFLAGS  = @EXTRACFLAGS@
58 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
59 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
60 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
61 WINEBUILDFLAGS = $(DLLFLAGS) --as-cmd "$(AS)"
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
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@
89 @SET_MAKE@
91 # Installation infos
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
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)
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)
121 OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(EXTRA_OBJS)
123 RCOBJS = $(RC_SRCS:.rc=.res.o)
124 LINTS  = $(C_SRCS:.c=.ln)
126 # Implicit rules
128 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.o .idl .tlb .h .y .l .tab.c .tab.h .yy.c .ok .sfd .ttf .man.in .man _c.c _i.c _p.c _s.c
130 .c.o:
131         $(CC) -c $(ALLCFLAGS) -o $@ $<
133 .s.o:
134         $(AS) -o $@ $<
136 .y.tab.c:
137         $(BISON) $(BISONFLAGS) -p $*_ -o $@ $<
139 .y.tab.h:
140         $(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<
142 .l.yy.c:
143         $(FLEX) $(LEXFLAGS) -o$@ $<
145 .mc.mc.rc:
146         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
148 .rc.res:
149         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
151 .res.res.o:
152         $(WINDRES) -i $< -o $@
154 .spec.spec.o:
155         $(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
157 .idl.h:
158         $(WIDL) $(IDLFLAGS) -h -H $@ $<
160 .idl_c.c:
161         $(WIDL) $(IDLFLAGS) -c -C $@ $<
163 .idl_i.c:
164         $(WIDL) $(IDLFLAGS) -u -U $@ $<
166 .idl_p.c:
167         $(WIDL) $(IDLFLAGS) -p -P $@ $<
169 .idl_s.c:
170         $(WIDL) $(IDLFLAGS) -s -S $@ $<
172 .idl.tlb:
173         $(WIDL) $(IDLFLAGS) -t -T $@ $<
175 .c.ln:
176         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
178 .c.ok:
179         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
181 .sfd.ttf:
182         $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
184 .man.in.man:
185         LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
187 # 'all' target first in case the enclosing Makefile didn't define any target
189 all:
191 filter: dummy
192         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
194 .PHONY: all filter
196 # Rules for IDL files
198 dlldata.c: $(WIDL) Makefile.in
199         $(WIDL) $(IDLFLAGS) --dlldata-only --dlldata=$@ $(IDL_P_SRCS)
201 # Rules for resources
203 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(IDL_TLB_SRCS:.idl=.tlb)
205 # Rule for linting
207 $(MODULE).ln : $(LINTS)
208         if test "$(LINTS)" ; \
209         then \
210                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
211                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
212         else \
213                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
214         fi
216 lint:: $(MODULE).ln
218 # Rules for Windows API checking
220 winapi_check:: dummy
221         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
223 .PHONY: winapi_check
225 # Rules for dependencies
227 DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_H_SRCS) $(IDL_C_SRCS) $(IDL_I_SRCS) $(IDL_P_SRCS) $(IDL_S_SRCS) $(IDL_GEN_C_SRCS) $(BISON_SRCS) $(LEX_SRCS) $(EXTRA_SRCS)
229 $(SUBDIRS:%=%/__depend__): dummy
230         @cd `dirname $@` && $(MAKE) depend
232 depend: $(SUBDIRS:%=%/__depend__) dummy
233         $(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(DEPEND_SRCS)
235 .PHONY: depend $(SUBDIRS:%=%/__depend__)
237 # Rules for cleaning
239 $(SUBDIRS:%=%/__clean__): dummy
240         @cd `dirname $@` && $(MAKE) clean
242 $(EXTRASUBDIRS:%=%/__clean__): dummy
243         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
245 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
246         $(RM) $(CLEAN_FILES) $(CLEAN_TARGETS) $(PROGRAMS) $(MANPAGES)
248 .PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
250 # Rules for installing
252 $(SUBDIRS:%=%/__install__): dummy
253         @cd `dirname $@` && $(MAKE) install
255 $(SUBDIRS:%=%/__install-lib__): dummy
256         @cd `dirname $@` && $(MAKE) install-lib
258 $(SUBDIRS:%=%/__install-dev__): dummy
259         @cd `dirname $@` && $(MAKE) install-dev
261 $(SUBDIRS:%=%/__uninstall__): dummy
262         @cd `dirname $@` && $(MAKE) uninstall
264 install:: $(INSTALLSUBDIRS:%=%/__install__)
266 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
268 $(INSTALLDIRS):
269         $(MKINSTALLDIRS) $@
271 .PHONY: install install-lib install-dev uninstall \
272         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
273         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
275 # Rules for testing
277 $(TESTSUBDIRS:%=%/__test__): dummy
278         @cd `dirname $@` && $(MAKE) test
280 $(TESTSUBDIRS:%=%/__crosstest__): dummy
281         @cd `dirname $@` && $(MAKE) crosstest
283 $(TESTSUBDIRS:%=%/__testclean__): dummy
284         @cd `dirname $@` && $(MAKE) testclean
286 check test:: $(TESTSUBDIRS:%=%/__test__)
288 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
290 testclean:: $(TESTSUBDIRS:%=%/__testclean__)
292 .PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 
294 # Rules for auto documentation
296 $(DOCSUBDIRS:%=%/__man__): dummy
297         @cd `dirname $@` && $(MAKE) man
299 $(DOCSUBDIRS:%=%/__doc_html__): dummy
300         @cd `dirname $@` && $(MAKE) doc-html
302 $(DOCSUBDIRS:%=%/__doc_sgml__): dummy
303         @cd `dirname $@` && $(MAKE) doc-sgml
305 man: $(DOCSUBDIRS:%=%/__man__)
306 doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
307 doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)
309 .PHONY: man doc-html doc-sgml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__)
311 # Misc. rules
313 $(MC_SRCS:.mc=.mc.rc): $(WMC)
315 $(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
317 $(SUBDIRS): dummy
318         @cd $@ && $(MAKE)
320 dummy:
322 .PHONY: dummy $(SUBDIRS)
324 # End of global rules