Fixed format strings.
[wine/multimedia.git] / Make.rules.in
blob454eb4112ba3c0a29fa323e3eee9e0c886d0efa9
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 # ASM_SRCS     : assembly sources
12 # GEN_C_SRCS   : generated C files
13 # GEN_ASM_SRCS : generated assembly sources
14 # RC_SRCS      : resource source files
15 # SPEC_SRCS    : interface definition files
16 # GLUE         : C sources for which glue code needs to be generated
17 # EXTRA_SRCS   : extra source files for make depend
18 # EXTRA_OBJS   : extra object files
19 # WRCEXTRA     : extra wrc flags (e.g. '-p _SysRes')
20 # SUBDIRS      : subdirectories that contain a Makefile
21 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
23 # First some useful definitions
25 SHELL     = /bin/sh
26 CC        = @CC@
27 CPP       = @CPP@
28 CFLAGS    = @CFLAGS@
29 OPTIONS   = @OPTIONS@ -D_REENTRANT
30 X_CFLAGS  = @X_CFLAGS@
31 X_LIBS    = @X_LIBS@
32 XLIB      = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
33 DLL_LINK  = @DLL_LINK@
34 LIBS      = @LIBS@
35 YACC      = @YACC@
36 LEX       = @LEX@
37 LEXLIB    = @LEXLIB@
38 RANLIB    = @RANLIB@
39 LN_S      = @LN_S@
40 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include
41 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
42 LDCOMBINE = ld -r
43 AR        = ar rc
44 RM        = rm -f
45 MV        = mv
46 MKDIR     = mkdir -p
47 C2MAN     = @C2MAN@
48 MANSPECS  = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
49             -w $(TOPSRCDIR)/dlls/user/user32.spec \
50             -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
51             -w $(TOPSRCDIR)/dlls/comdlg32/comdlg32.spec \
52             -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec 
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
56 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
57 BUILD     = $(TOPOBJDIR)/tools/winebuild/winebuild
58 MAKEDEP   = $(TOPOBJDIR)/tools/makedep
59 WRC       = $(TOPOBJDIR)/tools/wrc/wrc
60 WRCFLAGS  = -c -s -p $*
61 WMC       = $(TOPOBJDIR)/tools/wmc/wmc
62 DLLDIR    = $(TOPOBJDIR)/dlls
63 @SET_MAKE@
65 # Installation infos
67 INSTALL         = @INSTALL@
68 INSTALL_PROGRAM = @INSTALL_PROGRAM@
69 INSTALL_DATA    = @INSTALL_DATA@
70 prefix          = @prefix@
71 exec_prefix     = @exec_prefix@
72 bindir          = @bindir@
73 libdir          = @libdir@
74 infodir         = @infodir@
75 mandir          = @mandir@
76 prog_manext     = 1
77 conf_manext     = 5
78 includedir      = @includedir@/wine
79 CLEAN_FILES     = *.o *.a *.so *.ln \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
80                   *.flc *.spec.c *.glue.c y.tab.c y.tab.h lex.yy.c core
82 OBJS = $(SPEC_SRCS:.spec=.spec.o) $(C_SRCS:.c=.o) $(GEN_C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) \
83        $(ASM_SRCS:.S=.o) $(RC_SRCS:.rc=.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
85 LINTS = $(C_SRCS:.c=.ln)
87 # DLL list
89 X_DLLS = \
90         ddraw \
91         @OPENGL32_DLL@ \
92         x11drv
94 DLLS = \
95         @X_DLLS@ \
96         advapi32 \
97         avifil32 \
98         comctl32 \
99         comdlg32 \
100         crtdll \
101         dciman32 \
102         dinput \
103         dplay \
104         dplayx \
105         dsound \
106         gdi32 \
107         icmp \
108         imagehlp \
109         imm32 \
110         joystick.drv \
111         kernel32 \
112         lz32 \
113         mcianim.drv \
114         mciavi.drv \
115         mcicda.drv \
116         mciseq.drv \
117         mciwave.drv \
118         midimap.drv \
119         mpr \
120         msacm.drv \
121         msacm32 \
122         msnet32 \
123         msvfw32 \
124         odbc32 \
125         ole32 \
126         oleaut32 \
127         olecli32 \
128         oledlg \
129         olepro32 \
130         olesvr32 \
131         psapi \
132         rasapi32 \
133         riched32 \
134         rpcrt4 \
135         serialui \
136         setupapi \
137         shell32 \
138         shfolder \
139         shlwapi \
140         tapi32 \
141         ttydrv \
142         urlmon \
143         user32 \
144         version \
145         w32skrnl \
146         wineoss.drv \
147         wineps \
148         wininet \
149         winmm \
150         winspool.drv \
151         wnaspi32 \
152         wow32 \
153         ws2_32 \
154         wsock32
156 # Implicit rules
158 .SUFFIXES: .mc .rc .res .spec .spec.c .spec.o .glue.c
160 .c.o:
161         $(CC) -c $(ALLCFLAGS) -o $*.o $<
163 .spec.c.spec.o:
164         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
166 .s.o:
167         $(AS) -o $*.o $<  
169 .S.o:
170         $(CC) -c -o $*.o $<  
172 .mc.rc:
173         LD_LIBRARY_PATH="$(TOPOBJDIR):$$LD_LIBRARY_PATH" $(WMC) -i -H /dev/null -o $@ $<
175 .rc.s:
176         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
178 .rc.h:
179         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
181 .rc.res:
182         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
184 .res.s:
185         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
187 .res.h:
188         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
190 .spec.spec.c:
191         $(BUILD) @DLLFLAGS@ -o $@ -spec $<
193 .c.glue.c:
194         $(BUILD) @DLLFLAGS@ -o $@ -glue $<
196 .c.ln:
197         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
199 .PHONY: all install uninstall clean distclean depend dummy
201 # 'all' target first in case the enclosing Makefile didn't define any target
203 all: Makefile
205 # Rule to rebuild the resource compiler
207 $(WRC) check_wrc:
208         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc
210 # Rule to rebuild the message compiler
212 $(WMC) check_wmc:
213         cd $(TOPOBJDIR)/tools/wmc && $(MAKE) wmc
215 # Rule to rebuild the 'makedep' program
217 $(MAKEDEP) check_makedep:
218         cd $(TOPOBJDIR)/tools && $(MAKE) makedep
220 # Rule to rebuild the 'winebuild' program
222 $(BUILD) check_winebuild:
223         cd $(TOPOBJDIR)/tools/winebuild && $(MAKE) winebuild
225 # Rule for main module
227 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
228         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
230 # Rules for makefile
232 Makefile: Makefile.in $(TOPSRCDIR)/configure
233         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
234         @exit 1
236 # Rules for auto documentation
238 man: $(C_SRCS)
239         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
241 doc-html: $(C_SRCS)
242         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
244 # Rule for linting
246 $(MODULE).ln : $(LINTS)
247         if test "$(LINTS)" ; \
248         then \
249                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
250                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
251         else \
252                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
253         fi
255 lint:: $(MODULE).ln
257 # Rules for Windows API checking
259 winapi_check::
260         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
262 # Rules for dependencies
264 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
265         cd `dirname $@` && $(MAKE) depend
267 depend: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
268         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
270 # Rules for cleaning
272 $(SUBDIRS:%=%/__clean__): dummy
273         cd `dirname $@` && $(MAKE) clean
275 $(EXTRASUBDIRS:%=%/__clean__): dummy
276         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
278 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
279         $(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(MC_SRCS:.mc=.rc) $(PROGRAMS)
281 # Rules for installing
283 $(SUBDIRS:%=%/__install__): dummy
284         cd `dirname $@` && $(MAKE) install
286 $(SUBDIRS:%=%/__uninstall__): dummy
287         cd `dirname $@` && $(MAKE) uninstall
289 # Misc. rules
291 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
293 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
295 $(RC_SRCS:.rc=.s): $(WRC)
297 $(MC_SRCS:.mc=.rc): $(WMC)
299 $(SUBDIRS): dummy
300         @cd $@ && $(MAKE)
302 dummy:
304 # End of global rules