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
36 IMPLIBEXT = @IMPLIBEXT@
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
74 RCFLAGS = --nostdinc $(INCLUDES) $(EXTRARCFLAGS)
75 RC16FLAGS = -O res16 $(RCFLAGS)
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
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)
93 exec_prefix = @exec_prefix@
99 sysconfdir = @sysconfdir@
100 includedir = @includedir@/wine
101 dlldir = @libdir@/wine
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)
115 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
118 $(CC) -c $(ALLCFLAGS) -o $@ $<
124 $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
127 $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
130 $(WINDRES) -i $< -o $@
133 $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
136 $(WINEBUILD) $(DEFS) -o $@ --def $<
139 $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
142 $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
144 # 'all' target first in case the enclosing Makefile didn't define any target
149 @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
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
168 cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
172 Makefile: Makefile.in $(TOPSRCDIR)/configure
173 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
178 $(MODULE).ln : $(LINTS)
179 if test "$(LINTS)" ; \
181 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
182 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
184 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
189 # Rules for Windows API checking
192 $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
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__)
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__)
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__)
265 $(MC_SRCS:.mc=.mc.rc): $(WMC)
267 $(IDL_SRCS:.idl=.h): $(WIDL)
274 .PHONY: dummy $(SUBDIRS)
276 # End of global rules