Resource names don't need a case-sensitive comparison; this avoids
[wine/multimedia.git] / Make.rules.in
blob3ef6aa5b0788629b509f655a813310b8fc55d079
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
21 # First some useful definitions
23 SHELL     = /bin/sh
24 CC        = @CC@
25 CPP       = @CPP@
26 CFLAGS    = @CFLAGS@
27 LIBS      = @LIBS@
28 YACC      = @YACC@
29 LEX       = @LEX@
30 LEXLIB    = @LEXLIB@
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@ rc
40 RANLIB    = @RANLIB@
41 STRIP     = @STRIP@
42 WINDRES   = @WINDRES@
43 LN        = @LN@
44 LN_S      = @LN_S@
45 TOOLSDIR  = @TOOLSDIR@
46 AS        = @AS@
47 LD        = @LD@
48 LDFLAGS   = @LDFLAGS@
49 LDCOMBINE = $(LD) -r
50 RM        = rm -f
51 MV        = mv
52 C2MAN     = @C2MAN@
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
56 EXTRACFLAGS  = @EXTRACFLAGS@
57 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(EXTRACFLAGS) $(CFLAGS)
58 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
59 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
60 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
61 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
62 RUNTEST      = $(TOPSRCDIR)/tools/runtest
63 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
64 MAKEDEP      = $(TOOLSDIR)/tools/makedep
65 WRC          = $(TOOLSDIR)/tools/wrc/wrc
66 WMC          = $(TOOLSDIR)/tools/wmc/wmc
67 WIDL         = $(TOOLSDIR)/tools/widl/widl
68 WRCFLAGS     = --nostdinc $(INCLUDES) $(EXTRAWRCFLAGS)
69 LDPATH       = @LDPATH@
70 DLLDIR       = $(TOPOBJDIR)/dlls
71 LIBPORT      = -L$(TOPOBJDIR)/libs/port -lwine_port
72 LIBUNICODE   = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
73 LIBUUID      = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
74 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
76 @SET_MAKE@
78 # Installation infos
80 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
81 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
82 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
83 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
84 prefix          = @prefix@
85 exec_prefix     = @exec_prefix@
86 bindir          = @bindir@
87 libdir          = @libdir@
88 datadir         = @datadir@
89 infodir         = @infodir@
90 mandir          = @mandir@
91 sysconfdir      = @sysconfdir@
92 includedir      = @includedir@/wine
93 dlldir          = @libdir@/wine
94 prog_manext     = 1
95 api_manext      = 3w
96 conf_manext     = 5
97 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
98                   *.flc *.spec.c *.spec.def *.glue.c *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
100 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
102 RCOBJS = $(RC_SRCS:.rc=.res.o)
103 LINTS  = $(C_SRCS:.c=.ln)
105 # Implicit rules
107 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
109 .c.o:
110         $(CC) -c $(ALLCFLAGS) -o $@ $<
112 .s.o:
113         $(AS) -o $@ $<
115 .mc.mc.rc:
116         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
118 .rc.res:
119         $(LDPATH) $(WRC) $(WRCFLAGS) -o $@ $<
121 .res.res.o:
122         $(WINDRES) -i $< -o $@
124 .spec.spec.c:
125         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
127 .spec.spec.def:
128         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --def $<
130 .c.ln:
131         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
133 .c.ok:
134         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
136 # 'all' target first in case the enclosing Makefile didn't define any target
138 all: Makefile
140 filter:
141         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
143 .PHONY: all filter
145 # Rule for main module debug channels
147 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
148         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
150 # Rule to rebuild the tools
152 $(MAKEDEP):
153         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
155 # Rules for makefile
157 Makefile: Makefile.in $(TOPSRCDIR)/configure
158         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
159         @exit 1
161 # Rule for linting
163 $(MODULE).ln : $(LINTS)
164         if test "$(LINTS)" ; \
165         then \
166                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
167                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
168         else \
169                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
170         fi
172 lint:: $(MODULE).ln
174 # Rules for Windows API checking
176 winapi_check:: dummy
177         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
179 .PHONY: winapi_check
181 # Rules for dependencies
183 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
184         cd `dirname $@` && $(MAKE) depend
186 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
187         $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
189 .PHONY: depend $(SUBDIRS:%=%/__depend__)
191 # Rules for cleaning
193 $(SUBDIRS:%=%/__clean__): dummy
194         cd `dirname $@` && $(MAKE) clean
196 $(SUBDIRS:%=%/__testclean__): dummy
197         cd `dirname $@` && $(MAKE) testclean
199 $(EXTRASUBDIRS:%=%/__clean__): dummy
200         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
202 testclean:: $(SUBDIRS:%=%/__testclean__)
204 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
205         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
207 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
209 # Rules for installing
211 $(SUBDIRS:%=%/__install__): dummy
212         cd `dirname $@` && $(MAKE) install
214 $(SUBDIRS:%=%/__install-lib__): dummy
215         cd `dirname $@` && $(MAKE) install-lib
217 $(SUBDIRS:%=%/__install-dev__): dummy
218         cd `dirname $@` && $(MAKE) install-dev
220 $(SUBDIRS:%=%/__uninstall__): dummy
221         cd `dirname $@` && $(MAKE) uninstall
223 install:: $(INSTALLSUBDIRS:%=%/__install__)
225 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
227 .PHONY: install install-lib install-dev uninstall \
228         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
229         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
231 # Rules for checking that no imports are missing
233 $(SUBDIRS:%=%/__checklink__): dummy
234         @cd `dirname $@` && $(MAKE) checklink
236 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
238 # Rules for testing
240 $(SUBDIRS:%=%/__test__): dummy
241         @cd `dirname $@` && $(MAKE) test
243 $(SUBDIRS:%=%/__crosstest__): dummy
244         @cd `dirname $@` && $(MAKE) crosstest
246 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
248 # Misc. rules
250 $(RC_SRCS:.rc=.res): $(WRC)
252 $(RC_SRCS16:.rc=.res): $(WRC)
254 $(MC_SRCS:.mc=.mc.rc): $(WMC)
256 $(IDL_SRCS:.idl=.h): $(WIDL)
258 $(SUBDIRS): dummy
259         @cd $@ && $(MAKE)
261 dummy:
263 .PHONY: dummy $(SUBDIRS)
265 # End of global rules