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@
53 LINTFLAGS = @LINTFLAGS@
54 FONTFORGE = @FONTFORGE@
55 INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
56 EXTRACFLAGS = @EXTRACFLAGS@
57 ALLCFLAGS = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
58 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
59 IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
60 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
61 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
62 WINEWRAPPER = $(TOPSRCDIR)/tools/winewrapper
63 C2MAN = $(TOPSRCDIR)/tools/c2man.pl
64 RUNTEST = $(TOPSRCDIR)/tools/runtest
65 WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild
66 MAKEDEP = $(TOOLSDIR)/tools/makedep
67 WRC = $(TOOLSDIR)/tools/wrc/wrc
68 BIN2RES = $(TOOLSDIR)/tools/bin2res
69 WMC = $(TOOLSDIR)/tools/wmc/wmc
70 WIDL = $(TOOLSDIR)/tools/widl/widl
71 WINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc
72 SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt
73 FNT2FON = $(TOOLSDIR)/tools/fnt2fon
76 RCFLAGS = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
77 RC16FLAGS = -O res16 $(RCFLAGS)
79 DLLDIR = $(TOPOBJDIR)/dlls
80 LIBDIR = $(TOPOBJDIR)/libs
81 LIBPORT = -L$(TOPOBJDIR)/libs/port -lwine_port
82 LIBUNICODE = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
83 LIBWINE = -L$(TOPOBJDIR)/libs/wine -lwine
89 INSTALL = @INSTALL@ $(INSTALL_FLAGS)
90 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
91 INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
92 INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
94 exec_prefix = @exec_prefix@
100 sysconfdir = @sysconfdir@
101 includedir = @includedir@/wine
102 dlldir = @libdir@/wine
106 CLEAN_FILES = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
107 *.flc *.spec.c *.spec.def *.dbg.c *.tab.c *.tab.h @LEX_OUTPUT_ROOT@.c core
109 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
111 RCOBJS = $(RC_SRCS:.rc=.res.o)
112 LINTS = $(C_SRCS:.c=.ln)
116 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .idl .h .ok .sfd .ttf
119 $(CC) -c $(ALLCFLAGS) -o $@ $<
125 $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
128 $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
131 $(WINDRES) -i $< -o $@
134 $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --dll $<
137 $(WINEBUILD) -w $(DEFS) -o $@ --def $<
140 $(WIDL) $(IDLFLAGS) -h -H $@ $<
143 $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
146 $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
149 $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $<
151 # 'all' target first in case the enclosing Makefile didn't define any target
156 @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
160 # Rules for resources
162 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
163 $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
165 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES)
167 # Rule for main module debug channels
169 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
170 $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
174 Makefile: Makefile.in $(TOPSRCDIR)/configure
175 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
180 $(MODULE).ln : $(LINTS)
181 if test "$(LINTS)" ; \
183 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
184 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
186 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
191 # Rules for Windows API checking
194 $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
198 # Rules for dependencies
200 $(SUBDIRS:%=%/__depend__): dummy
201 cd `dirname $@` && $(MAKE) depend
203 depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__)
204 $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
206 .PHONY: depend $(SUBDIRS:%=%/__depend__)
210 $(SUBDIRS:%=%/__clean__): dummy
211 cd `dirname $@` && $(MAKE) clean
213 $(SUBDIRS:%=%/__testclean__): dummy
214 cd `dirname $@` && $(MAKE) testclean
216 $(EXTRASUBDIRS:%=%/__clean__): dummy
217 -cd `dirname $@` && $(RM) $(CLEAN_FILES)
219 testclean:: $(SUBDIRS:%=%/__testclean__)
221 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
222 $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(IDL_SRCS:.idl=.h) $(PROGRAMS) $(RC_BINARIES)
224 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
226 # Rules for installing
228 $(SUBDIRS:%=%/__install__): dummy
229 cd `dirname $@` && $(MAKE) install
231 $(SUBDIRS:%=%/__install-lib__): dummy
232 cd `dirname $@` && $(MAKE) install-lib
234 $(SUBDIRS:%=%/__install-dev__): dummy
235 cd `dirname $@` && $(MAKE) install-dev
237 $(SUBDIRS:%=%/__uninstall__): dummy
238 cd `dirname $@` && $(MAKE) uninstall
240 install:: $(INSTALLSUBDIRS:%=%/__install__)
242 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
244 .PHONY: install install-lib install-dev uninstall \
245 $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
246 $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
248 # Rules for checking that no imports are missing
250 $(SUBDIRS:%=%/__checklink__): dummy
251 @cd `dirname $@` && $(MAKE) checklink
253 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
257 $(SUBDIRS:%=%/__test__): dummy
258 @cd `dirname $@` && $(MAKE) test
260 $(SUBDIRS:%=%/__crosstest__): dummy
261 @cd `dirname $@` && $(MAKE) crosstest
263 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
267 $(MC_SRCS:.mc=.mc.rc): $(WMC)
269 $(IDL_SRCS:.idl=.h): $(WIDL)
276 .PHONY: dummy $(SUBDIRS)
278 # End of global rules