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
35 IMPLIBEXT = @IMPLIBEXT@
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)
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
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)
85 exec_prefix = @exec_prefix@
91 sysconfdir = @sysconfdir@
92 includedir = @includedir@/wine
93 dlldir = @libdir@/wine
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)
107 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
110 $(CC) -c $(ALLCFLAGS) -o $@ $<
116 $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
119 $(LDPATH) $(WRC) $(WRCFLAGS) -o $@ $<
122 $(WINDRES) -i $< -o $@
125 $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
128 $(WINEBUILD) $(DEFS) -o $@ --def $<
131 $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
134 $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
136 # 'all' target first in case the enclosing Makefile didn't define any target
141 @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
145 # Rule for main module debug channels
147 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
148 $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
150 # Rule to rebuild the tools
153 cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
157 Makefile: Makefile.in $(TOPSRCDIR)/configure
158 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
163 $(MODULE).ln : $(LINTS)
164 if test "$(LINTS)" ; \
166 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
167 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
169 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
174 # Rules for Windows API checking
177 $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
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__)
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__)
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__)
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)
263 .PHONY: dummy $(SUBDIRS)
265 # End of global rules