Removed a couple of unused fields in the DC structure.
[wine/multimedia.git] / Make.rules.in
blob29c101940e7ea9f9b4360ed24e6b58f622a0ca2b
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 CPPFLAGS  = @CPPFLAGS@
28 LIBS      = @LIBS@
29 YACC      = @YACC@
30 LEX       = @LEX@
31 LEXLIB    = @LEXLIB@
32 EXEEXT    = @EXEEXT@
33 OBJEXT    = @OBJEXT@
34 LIBEXT    = @LIBEXT@
35 DLLEXT    = @DLLEXT@
36 IMPLIBEXT = @IMPLIBEXT@
37 LDSHARED  = @LDSHARED@
38 LDDLL     = @LDDLL@
39 DLLTOOL   = @DLLTOOL@
40 DLLWRAP   = @DLLWRAP@
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 AS        = @AS@
49 LD        = @LD@
50 LDFLAGS   = @LDFLAGS@
51 LDCOMBINE = $(LD) -r
52 RM        = rm -f
53 MV        = mv
54 LINT      = @LINT@
55 LINTFLAGS = @LINTFLAGS@
56 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
57 EXTRACFLAGS  = @EXTRACFLAGS@
58 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
59 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
60 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
61 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
62 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
63 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
64 C2MAN        = $(TOPSRCDIR)/tools/c2man.pl
65 RUNTEST      = $(TOPSRCDIR)/tools/runtest
66 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
67 MAKEDEP      = $(TOOLSDIR)/tools/makedep
68 WRC          = $(TOOLSDIR)/tools/wrc/wrc
69 BIN2RES      = $(TOOLSDIR)/tools/bin2res
70 WMC          = $(TOOLSDIR)/tools/wmc/wmc
71 WIDL         = $(TOOLSDIR)/tools/widl/widl
72 RC           = $(WRC)
73 RC16         = $(WRC)
74 RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
75 RC16FLAGS    = -O res16 $(RCFLAGS)
76 LDPATH       = @LDPATH@
77 DLLDIR       = $(TOPOBJDIR)/dlls
78 LIBDIR       = $(TOPOBJDIR)/libs
79 LIBPORT      = -L$(TOPOBJDIR)/libs/port -lwine_port
80 LIBUNICODE   = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
81 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
83 @SET_MAKE@
85 # Installation infos
87 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
88 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
89 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
90 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
91 prefix          = @prefix@
92 exec_prefix     = @exec_prefix@
93 bindir          = @bindir@
94 libdir          = @libdir@
95 datadir         = @datadir@
96 infodir         = @infodir@
97 mandir          = @mandir@
98 sysconfdir      = @sysconfdir@
99 includedir      = @includedir@/wine
100 dlldir          = @libdir@/wine
101 prog_manext     = 1
102 api_manext      = 3w
103 conf_manext     = 5
104 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
105                   *.flc *.spec.c *.spec.def *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
107 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
109 RCOBJS = $(RC_SRCS:.rc=.res.o)
110 LINTS  = $(C_SRCS:.c=.ln)
112 # Implicit rules
114 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
116 .c.o:
117         $(CC) -c $(ALLCFLAGS) -o $@ $<
119 .s.o:
120         $(AS) -o $@ $<
122 .mc.mc.rc:
123         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
125 .rc.res:
126         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
128 .res.res.o:
129         $(WINDRES) -i $< -o $@
131 .spec.spec.c:
132         $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
134 .spec.spec.def:
135         $(WINEBUILD) $(DEFS) -o $@ --def $<
137 .c.ln:
138         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
140 .c.ok:
141         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
143 # 'all' target first in case the enclosing Makefile didn't define any target
145 all: Makefile
147 filter:
148         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
150 .PHONY: all filter
152 # Rules for resources
154 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
155         $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
157 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES)
159 # Rule for main module debug channels
161 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
162         $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
164 # Rule to rebuild the tools
166 $(MAKEDEP):
167         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
169 # Rules for makefile
171 Makefile: Makefile.in $(TOPSRCDIR)/configure
172         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
173         @exit 1
175 # Rule for linting
177 $(MODULE).ln : $(LINTS)
178         if test "$(LINTS)" ; \
179         then \
180                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
181                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
182         else \
183                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
184         fi
186 lint:: $(MODULE).ln
188 # Rules for Windows API checking
190 winapi_check:: dummy
191         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
193 .PHONY: winapi_check
195 # Rules for dependencies
197 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
198         cd `dirname $@` && $(MAKE) depend
200 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
201         $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
203 .PHONY: depend $(SUBDIRS:%=%/__depend__)
205 # Rules for cleaning
207 $(SUBDIRS:%=%/__clean__): dummy
208         cd `dirname $@` && $(MAKE) clean
210 $(SUBDIRS:%=%/__testclean__): dummy
211         cd `dirname $@` && $(MAKE) testclean
213 $(EXTRASUBDIRS:%=%/__clean__): dummy
214         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
216 testclean:: $(SUBDIRS:%=%/__testclean__)
218 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
219         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS) $(RC_BINARIES)
221 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
223 # Rules for installing
225 $(SUBDIRS:%=%/__install__): dummy
226         cd `dirname $@` && $(MAKE) install
228 $(SUBDIRS:%=%/__install-lib__): dummy
229         cd `dirname $@` && $(MAKE) install-lib
231 $(SUBDIRS:%=%/__install-dev__): dummy
232         cd `dirname $@` && $(MAKE) install-dev
234 $(SUBDIRS:%=%/__uninstall__): dummy
235         cd `dirname $@` && $(MAKE) uninstall
237 install:: $(INSTALLSUBDIRS:%=%/__install__)
239 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
241 .PHONY: install install-lib install-dev uninstall \
242         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
243         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
245 # Rules for checking that no imports are missing
247 $(SUBDIRS:%=%/__checklink__): dummy
248         @cd `dirname $@` && $(MAKE) checklink
250 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
252 # Rules for testing
254 $(SUBDIRS:%=%/__test__): dummy
255         @cd `dirname $@` && $(MAKE) test
257 $(SUBDIRS:%=%/__crosstest__): dummy
258         @cd `dirname $@` && $(MAKE) crosstest
260 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
262 # Misc. rules
264 $(MC_SRCS:.mc=.mc.rc): $(WMC)
266 $(IDL_SRCS:.idl=.h): $(WIDL)
268 $(SUBDIRS): dummy
269         @cd $@ && $(MAKE)
271 dummy:
273 .PHONY: dummy $(SUBDIRS)
275 # End of global rules