libntdll.dll.so no longer exists, check for libntdll.def instead.
[wine/multimedia.git] / Make.rules.in
blob822b4510aaa6c42a6eceaeacb79c50cbc818a448
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) $(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 LIBUUID      = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
82 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
84 @SET_MAKE@
86 # Installation infos
88 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
89 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
90 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
91 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
92 prefix          = @prefix@
93 exec_prefix     = @exec_prefix@
94 bindir          = @bindir@
95 libdir          = @libdir@
96 datadir         = @datadir@
97 infodir         = @infodir@
98 mandir          = @mandir@
99 sysconfdir      = @sysconfdir@
100 includedir      = @includedir@/wine
101 dlldir          = @libdir@/wine
102 prog_manext     = 1
103 api_manext      = 3w
104 conf_manext     = 5
105 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
106                   *.flc *.spec.c *.spec.def *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
108 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
110 RCOBJS = $(RC_SRCS:.rc=.res.o)
111 LINTS  = $(C_SRCS:.c=.ln)
113 # Implicit rules
115 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
117 .c.o:
118         $(CC) -c $(ALLCFLAGS) -o $@ $<
120 .s.o:
121         $(AS) -o $@ $<
123 .mc.mc.rc:
124         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
126 .rc.res:
127         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
129 .res.res.o:
130         $(WINDRES) -i $< -o $@
132 .spec.spec.c:
133         $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
135 .spec.spec.def:
136         $(WINEBUILD) $(DEFS) -o $@ --def $<
138 .c.ln:
139         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
141 .c.ok:
142         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
144 # 'all' target first in case the enclosing Makefile didn't define any target
146 all: Makefile
148 filter:
149         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
151 .PHONY: all filter
153 # Rules for resources
155 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
156         $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
158 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES)
160 # Rule for main module debug channels
162 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
163         $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
165 # Rule to rebuild the tools
167 $(MAKEDEP):
168         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
170 # Rules for makefile
172 Makefile: Makefile.in $(TOPSRCDIR)/configure
173         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
174         @exit 1
176 # Rule for linting
178 $(MODULE).ln : $(LINTS)
179         if test "$(LINTS)" ; \
180         then \
181                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
182                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
183         else \
184                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
185         fi
187 lint:: $(MODULE).ln
189 # Rules for Windows API checking
191 winapi_check:: dummy
192         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
194 .PHONY: winapi_check
196 # Rules for dependencies
198 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
199         cd `dirname $@` && $(MAKE) depend
201 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
202         $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
204 .PHONY: depend $(SUBDIRS:%=%/__depend__)
206 # Rules for cleaning
208 $(SUBDIRS:%=%/__clean__): dummy
209         cd `dirname $@` && $(MAKE) clean
211 $(SUBDIRS:%=%/__testclean__): dummy
212         cd `dirname $@` && $(MAKE) testclean
214 $(EXTRASUBDIRS:%=%/__clean__): dummy
215         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
217 testclean:: $(SUBDIRS:%=%/__testclean__)
219 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
220         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS) $(RC_BINARIES)
222 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
224 # Rules for installing
226 $(SUBDIRS:%=%/__install__): dummy
227         cd `dirname $@` && $(MAKE) install
229 $(SUBDIRS:%=%/__install-lib__): dummy
230         cd `dirname $@` && $(MAKE) install-lib
232 $(SUBDIRS:%=%/__install-dev__): dummy
233         cd `dirname $@` && $(MAKE) install-dev
235 $(SUBDIRS:%=%/__uninstall__): dummy
236         cd `dirname $@` && $(MAKE) uninstall
238 install:: $(INSTALLSUBDIRS:%=%/__install__)
240 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
242 .PHONY: install install-lib install-dev uninstall \
243         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
244         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
246 # Rules for checking that no imports are missing
248 $(SUBDIRS:%=%/__checklink__): dummy
249         @cd `dirname $@` && $(MAKE) checklink
251 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
253 # Rules for testing
255 $(SUBDIRS:%=%/__test__): dummy
256         @cd `dirname $@` && $(MAKE) test
258 $(SUBDIRS:%=%/__crosstest__): dummy
259         @cd `dirname $@` && $(MAKE) crosstest
261 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
263 # Misc. rules
265 $(MC_SRCS:.mc=.mc.rc): $(WMC)
267 $(IDL_SRCS:.idl=.h): $(WIDL)
269 $(SUBDIRS): dummy
270         @cd $@ && $(MAKE)
272 dummy:
274 .PHONY: dummy $(SUBDIRS)
276 # End of global rules