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 # SPEC_SRCS : interface definition files
14 # EXTRA_SRCS : extra source files for make depend
15 # EXTRA_OBJS : extra object files
16 # IMPORTS : dlls to import
17 # DELAYIMPORTS : dlls to import in delayed mode
18 # SUBDIRS : subdirectories that contain a Makefile
19 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
20 # INSTALLSUBDIRS : subdirectories to run make install/uninstall into
22 # First some useful definitions
27 CFLAGS = @CFLAGS@ $(EXTRACFLAGS)
28 OPTIONS = @OPTIONS@ -D_REENTRANT
37 IMPLIBEXT = @IMPLIBEXT@
49 DIVINCL = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
50 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS)
57 MANSPECS = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
58 -w $(TOPSRCDIR)/dlls/user/user32.spec \
59 -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
60 -w $(TOPSRCDIR)/dlls/commdlg/comdlg32.spec \
61 -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec
63 LINTFLAGS = @LINTFLAGS@
64 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
65 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs
66 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
67 WINEWRAPPER = $(TOPSRCDIR)/tools/winewrapper
68 RUNTEST = $(TOPSRCDIR)/tools/runtest
69 WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild
70 MAKEDEP = $(TOOLSDIR)/tools/makedep
71 WRC = $(TOOLSDIR)/tools/wrc/wrc
72 WMC = $(TOOLSDIR)/tools/wmc/wmc
73 WIDL = $(TOOLSDIR)/tools/widl/widl
74 WRCFLAGS = -J -m $(EXTRAWRCFLAGS)
76 DLLDIR = $(TOPOBJDIR)/dlls
77 LIBWINE = -L$(TOPOBJDIR)/library -lwine
78 LIBUNICODE = -L$(TOPOBJDIR)/unicode -lwine_unicode
79 LIBUUID = -L$(TOPOBJDIR)/ole -lwine_uuid
85 INSTALL = @INSTALL@ $(INSTALL_FLAGS)
86 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
87 INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
88 INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
90 exec_prefix = @exec_prefix@
96 sysconfdir = @sysconfdir@
97 includedir = @includedir@/wine
98 dlldir = @libdir@/wine
101 CLEAN_FILES = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
102 *.flc *.spec.c *.spec.def *.glue.c *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
104 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
106 RCOBJS = $(RC_SRCS:.rc=.res.o)
107 LINTS = $(C_SRCS:.c=.ln)
111 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok .cross.o
114 $(CC) -c $(ALLCFLAGS) -o $@ $<
117 $(CROSSCC) -c $(ALLCFLAGS) -o $@ $<
123 $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
126 $(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ $<
129 $(WINDRES) -i $< -o $@
132 $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ -M $(MODULE) --spec $<
135 $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --def $<
138 $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
141 $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
143 # 'all' target first in case the enclosing Makefile didn't define any target
148 @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
152 # Rule for main module debug channels
154 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
155 $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
157 # Rule to rebuild the tools
159 $(MAKEDEP) $(WINEBUILD) $(WMC) $(WRC):
160 cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
164 Makefile: Makefile.in $(TOPSRCDIR)/configure
165 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
168 # Rules for auto documentation
170 $(SUBDIRS:%=%/__man__): dummy
171 cd `dirname $@` && $(MAKE) man
173 man: $(C_SRCS) $(SUBDIRS:%=%/__man__)
174 if [ -n "$(C_SRCS)" ]; then $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINESRC__ $(MANSPECS) $$i; done; fi
176 $(SUBDIRS:%=%/__doc_html__): dummy
177 cd `dirname $@` && $(MAKE) doc-html
179 doc-html: $(C_SRCS) $(SUBDIRS:%=%/__doc_html__)
180 if [ -n "$(C_SRCS)" ]; then $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h $(DIVINCL) -D__WINESRC__ $(MANSPECS) $$i; done; fi
182 .PHONY: man doc-html $(SUBDIRS:%=%/__man__) $(SUBDIRS:%=%/__doc_html__)
186 $(MODULE).ln : $(LINTS)
187 if test "$(LINTS)" ; \
189 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
190 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
192 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
197 # Rules for Windows API checking
200 $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
204 # Rules for dependencies
206 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
207 cd `dirname $@` && $(MAKE) depend
209 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
210 $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(EXTRA_SRCS)
212 .PHONY: depend $(SUBDIRS:%=%/__depend__)
216 $(SUBDIRS:%=%/__clean__): dummy
217 cd `dirname $@` && $(MAKE) clean
219 $(SUBDIRS:%=%/__testclean__): dummy
220 cd `dirname $@` && $(MAKE) testclean
222 $(EXTRASUBDIRS:%=%/__clean__): dummy
223 -cd `dirname $@` && $(RM) $(CLEAN_FILES)
225 testclean:: $(SUBDIRS:%=%/__testclean__)
227 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
228 $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
230 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
232 # Rules for installing
234 $(INSTALLSUBDIRS:%=%/__install__): dummy
235 cd `dirname $@` && $(MAKE) install
237 $(INSTALLSUBDIRS:%=%/__uninstall__): dummy
238 cd `dirname $@` && $(MAKE) uninstall
240 install:: $(INSTALLSUBDIRS:%=%/__install__)
242 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
244 .PHONY: install install-lib install-dev uninstall \
245 $(INSTALLSUBDIRS:%=%/__install__) $(INSTALLSUBDIRS:%=%/__uninstall__)
247 # Rules for checking that no imports are missing
249 $(SUBDIRS:%=%/__checklink__): dummy
250 @cd `dirname $@` && $(MAKE) checklink
252 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
256 $(SUBDIRS:%=%/__test__): dummy
257 @cd `dirname $@` && $(MAKE) test
259 $(SUBDIRS:%=%/__crosstest__): dummy
260 @cd `dirname $@` && $(MAKE) crosstest
262 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
266 $(SPEC_SRCS:.spec=.spec.c): $(WINEBUILD)
268 $(RC_SRCS:.rc=.res): $(WRC)
270 $(RC_SRCS16:.rc=.res): $(WRC)
272 $(MC_SRCS:.mc=.mc.rc): $(WMC)
279 .PHONY: dummy $(SUBDIRS)
281 # End of global rules