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 # SUBDIRS : subdirectories that contain a Makefile
20 # EXTRASUBDIRS : subdirectories that do not contain a Makefile
22 # First some useful definitions
28 OPTIONS = @OPTIONS@ -D_REENTRANT
31 XLIB = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
41 DIVINCL = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
42 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
43 LDCOMBINE = @LDCOMBINE@
50 MANSPECS = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
51 -w $(TOPSRCDIR)/dlls/user/user32.spec \
52 -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
53 -w $(TOPSRCDIR)/dlls/comdlg32/comdlg32.spec \
54 -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec
56 LINTFLAGS = @LINTFLAGS@
57 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
58 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
59 WINEBUILD = $(TOPOBJDIR)/tools/winebuild/winebuild
60 MAKEDEP = $(TOPOBJDIR)/tools/makedep
61 WRC = $(TOPOBJDIR)/tools/wrc/wrc
62 WMC = $(TOPOBJDIR)/tools/wmc/wmc
63 LDPATH = LD_LIBRARY_PATH="$(TOPOBJDIR)/unicode:$$LD_LIBRARY_PATH"
64 DLLDIR = $(TOPOBJDIR)/dlls
65 LIBWINE = -L$(TOPOBJDIR)/library -lwine
66 LIBTSX11 = -L$(TOPOBJDIR)/tsx11 -lwine_tsx11
67 LIBUNICODE= -L$(TOPOBJDIR)/unicode -lwine_unicode
68 LIBUUID = -L$(TOPOBJDIR)/ole -luuid
75 INSTALL_PROGRAM = @INSTALL_PROGRAM@
76 INSTALL_DATA = @INSTALL_DATA@
78 exec_prefix = @exec_prefix@
85 includedir = @includedir@/wine
86 CLEAN_FILES = *.o *.a *.so *.ln \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
87 *.flc *.spec.c *.glue.c y.tab.c y.tab.h lex.yy.c core
89 OBJS = $(SPEC_SRCS:.spec=.spec.o) $(C_SRCS:.c=.o) $(GEN_C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) \
90 $(ASM_SRCS:.S=.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
92 LINTS = $(C_SRCS:.c=.ln)
165 .SUFFIXES: .mc .rc .mc.rc .res .spec .spec.c .glue.c
168 $(CC) -c $(ALLCFLAGS) -o $*.o $<
177 $(LDPATH) $(WMC) -i -H /dev/null -o $@ $<
180 $(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ -r $<
183 $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -L$(DLLDIR) -o $@ -spec $<
186 $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -o $@ -glue $<
189 $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
191 .PHONY: all install uninstall clean distclean depend dummy
193 # 'all' target first in case the enclosing Makefile didn't define any target
197 # Rule for main module intermediate object
199 $(MODULE).tmp.o: $(OBJS) Makefile.in
200 $(LDCOMBINE) $(OBJS) -o $@
201 -strip --strip-unneeded $@
203 # Rule for main module spec file
205 $(MODULE).spec.c: $(MODULE).spec $(RC_SRCS:.rc=.res) $(SYMBOLFILE) $(WINEBUILD)
206 $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -L$(DLLDIR) $(SYMBOLFILE:%=-sym %) -o $@ -spec $(SRCDIR)/$(MODULE).spec
208 # Rule to rebuild the resource compiler
211 cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc
213 # Rule to rebuild the message compiler
216 cd $(TOPOBJDIR)/tools/wmc && $(MAKE) wmc
218 # Rule to rebuild the 'makedep' program
221 cd $(TOPOBJDIR)/tools && $(MAKE) makedep
223 # Rule to rebuild the 'winebuild' program
226 cd $(TOPOBJDIR)/tools/winebuild && $(MAKE) winebuild
230 Makefile: Makefile.in $(TOPSRCDIR)/configure
231 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
234 # Rules for auto documentation
237 for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
240 for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
244 $(MODULE).ln : $(LINTS)
245 if test "$(LINTS)" ; \
247 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
248 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
250 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
255 # Rules for Windows API checking
258 $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
260 # Rules for dependencies
262 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
263 cd `dirname $@` && $(MAKE) depend
265 depend: $(MAKEDEP) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
266 $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(MC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
270 $(SUBDIRS:%=%/__clean__): dummy
271 cd `dirname $@` && $(MAKE) clean
273 $(EXTRASUBDIRS:%=%/__clean__): dummy
274 -cd `dirname $@` && $(RM) $(CLEAN_FILES)
276 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
277 $(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
279 # Rules for installing
281 $(SUBDIRS:%=%/__install__): dummy
282 cd `dirname $@` && $(MAKE) install
284 $(SUBDIRS:%=%/__uninstall__): dummy
285 cd `dirname $@` && $(MAKE) uninstall
289 $(SPEC_SRCS:.spec=.spec.c): $(WINEBUILD) $(TOPSRCDIR)/include/builtin16.h
291 $(GLUE:.c=.glue.c): $(WINEBUILD) $(TOPSRCDIR)/include/builtin16.h
293 $(RC_SRCS:.rc=.res): $(WRC)
295 $(MC_SRCS:.mc=.mc.rc): $(WMC)
302 # End of global rules