Moved wine_anon_mmap to loader.c.
[wine] / Make.rules.in
1 # Global rules shared by all makefiles     -*-Makefile-*-
2 #
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
8 #
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
21
22 # First some useful definitions
23
24 SHELL     = /bin/sh
25 CC        = @CC@
26 CPP       = @CPP@
27 CFLAGS    = @CFLAGS@ $(EXTRACFLAGS)
28 OPTIONS   = @OPTIONS@ -D_REENTRANT
29 LIBS      = @LIBS@
30 YACC      = @YACC@
31 LEX       = @LEX@
32 LEXLIB    = @LEXLIB@
33 EXEEXT    = @EXEEXT@
34 OBJEXT    = @OBJEXT@
35 LIBEXT    = @LIBEXT@
36 DLLEXT    = @DLLEXT@
37 IMPLIBEXT = @IMPLIBEXT@
38 CROSSCC   = @CROSSCC@
39 LDSHARED  = @LDSHARED@
40 DLLTOOL   = @DLLTOOL@
41 DLLWRAP   = @DLLWRAP@
42 AR        = @AR@ rc
43 RANLIB    = @RANLIB@
44 STRIP     = @STRIP@
45 WINDRES   = @WINDRES@
46 LN        = @LN@
47 LN_S      = @LN_S@
48 TOOLSDIR  = @TOOLSDIR@
49 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
50 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS)
51 AS        = @AS@
52 LD        = @LD@
53 LDFLAGS   = @LDFLAGS@
54 LDCOMBINE = $(LD) -r
55 RM        = rm -f
56 MV        = mv
57 C2MAN     = @C2MAN@
58 LINT      = @LINT@
59 LINTFLAGS = @LINTFLAGS@
60 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
61 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs
62 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
63 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
64 RUNTEST      = $(TOPSRCDIR)/tools/runtest
65 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
66 MAKEDEP      = $(TOOLSDIR)/tools/makedep
67 WRC          = $(TOOLSDIR)/tools/wrc/wrc
68 WMC          = $(TOOLSDIR)/tools/wmc/wmc
69 WIDL         = $(TOOLSDIR)/tools/widl/widl
70 WRCFLAGS     = -m --nostdinc $(EXTRAWRCFLAGS)
71 LDPATH       = @LDPATH@
72 DLLDIR       = $(TOPOBJDIR)/dlls
73 LIBPORT      = -L$(TOPOBJDIR)/libs/port -lwine_port
74 LIBWINE      = -L$(TOPOBJDIR)/library -lwine
75 LIBUNICODE   = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
76 LIBUUID      = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
77
78 @SET_MAKE@
79
80 # Installation infos
81
82 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
83 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
84 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
85 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
86 prefix          = @prefix@
87 exec_prefix     = @exec_prefix@
88 bindir          = @bindir@
89 libdir          = @libdir@
90 datadir         = @datadir@
91 infodir         = @infodir@
92 mandir          = @mandir@
93 sysconfdir      = @sysconfdir@
94 includedir      = @includedir@/wine
95 dlldir          = @libdir@/wine
96 prog_manext     = 1
97 api_manext      = 3w
98 conf_manext     = 5
99 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
100                   *.flc *.spec.c *.spec.def *.glue.c *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
101
102 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
103
104 RCOBJS = $(RC_SRCS:.rc=.res.o)
105 LINTS  = $(C_SRCS:.c=.ln)
106
107 # Implicit rules
108
109 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok .cross.o
110
111 .c.o:
112         $(CC) -c $(ALLCFLAGS) -o $@ $<
113
114 .c.cross.o:
115         $(CROSSCC) -c $(ALLCFLAGS) -o $@ $<
116
117 .s.o:
118         $(AS) -o $@ $<
119
120 .mc.mc.rc:
121         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
122
123 .rc.res:
124         $(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ $<
125
126 .res.res.o:
127         $(WINDRES) -i $< -o $@
128
129 .spec.spec.c:
130         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ -M $(MODULE) --spec $<
131
132 .spec.spec.def:
133         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --def $<
134
135 .c.ln:
136         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
137
138 .c.ok:
139         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
140
141 # 'all' target first in case the enclosing Makefile didn't define any target
142
143 all: Makefile
144
145 filter:
146         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
147
148 .PHONY: all filter
149
150 # Rule for main module debug channels
151
152 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
153         $(LDPATH) $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
154
155 # Rule to rebuild the tools
156
157 $(MAKEDEP) $(WIDL) $(WINEBUILD) $(WMC) $(WRC):
158         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
159
160 # Rules for makefile
161
162 Makefile: Makefile.in $(TOPSRCDIR)/configure
163         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
164         @exit 1
165
166 # Rules for auto documentation
167
168 $(SUBDIRS:%=%/__man__): dummy
169         cd `dirname $@` && $(MAKE) man
170
171 man: $(C_SRCS) $(SUBDIRS:%=%/__man__)
172         $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man$(api_manext) && $(C2MAN) -o $(TOPOBJDIR)/documentation/man$(api_manext) -R$(TOPOBJDIR) -S$(api_manext) $(DIVINCL) $(MAINSPEC:%=-w %) $(SPEC_SRCS:%=-w %) $(C_SRCS) $(C_SRCS16)
173
174 $(SUBDIRS:%=%/__doc_html__): dummy
175         cd `dirname $@` && $(MAKE) doc-html
176
177 doc-html: $(C_SRCS) $(SUBDIRS:%=%/__doc_html__)
178         $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html && $(C2MAN) -o $(TOPOBJDIR)/documentation/html -R$(TOPOBJDIR) $(DIVINCL) -Th $(MAINSPEC:%=-w %) $(SPEC_SRCS:%=-w %) $(C_SRCS) $(C_SRCS16)
179
180 $(SUBDIRS:%=%/__doc_sgml__): dummy
181         cd `dirname $@` && $(MAKE) doc-sgml
182
183 doc-sgml: $(C_SRCS) $(SUBDIRS:%=%/__doc_sgml__)
184         $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/api-guide && $(C2MAN) -o $(TOPOBJDIR)/documentation/api-guide -R$(TOPOBJDIR) $(DIVINCL) -Ts $(MAINSPEC:%=-w %) $(SPEC_SRCS:%=-w %) $(C_SRCS) $(C_SRCS16)
185
186 .PHONY: man doc-html doc-sgml $(SUBDIRS:%=%/__man__) $(SUBDIRS:%=%/__doc_html__) $(SUBDIRS:%=%/__doc_sgml__)
187
188 # Rule for linting
189
190 $(MODULE).ln : $(LINTS)
191         if test "$(LINTS)" ; \
192         then \
193                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
194                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
195         else \
196                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
197         fi
198
199 lint:: $(MODULE).ln
200
201 # Rules for Windows API checking
202
203 winapi_check:: dummy
204         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
205
206 .PHONY: winapi_check
207
208 # Rules for dependencies
209
210 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
211         cd `dirname $@` && $(MAKE) depend
212
213 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
214         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(EXTRA_SRCS)
215
216 .PHONY: depend $(SUBDIRS:%=%/__depend__)
217
218 # Rules for cleaning
219
220 $(SUBDIRS:%=%/__clean__): dummy
221         cd `dirname $@` && $(MAKE) clean
222
223 $(SUBDIRS:%=%/__testclean__): dummy
224         cd `dirname $@` && $(MAKE) testclean
225
226 $(EXTRASUBDIRS:%=%/__clean__): dummy
227         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
228
229 testclean:: $(SUBDIRS:%=%/__testclean__)
230
231 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
232         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
233
234 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
235
236 # Rules for installing
237
238 $(INSTALLSUBDIRS:%=%/__install__): dummy
239         cd `dirname $@` && $(MAKE) install
240
241 $(INSTALLSUBDIRS:%=%/__uninstall__): dummy
242         cd `dirname $@` && $(MAKE) uninstall
243
244 install:: $(INSTALLSUBDIRS:%=%/__install__)
245
246 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
247
248 .PHONY: install install-lib install-dev uninstall \
249         $(INSTALLSUBDIRS:%=%/__install__) $(INSTALLSUBDIRS:%=%/__uninstall__)
250
251 # Rules for checking that no imports are missing
252
253 $(SUBDIRS:%=%/__checklink__): dummy
254         @cd `dirname $@` && $(MAKE) checklink
255
256 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
257
258 # Rules for testing
259
260 $(SUBDIRS:%=%/__test__): dummy
261         @cd `dirname $@` && $(MAKE) test
262
263 $(SUBDIRS:%=%/__crosstest__): dummy
264         @cd `dirname $@` && $(MAKE) crosstest
265
266 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
267
268 # Misc. rules
269
270 $(SPEC_SRCS:.spec=.spec.c): $(WINEBUILD)
271
272 $(RC_SRCS:.rc=.res): $(WRC)
273
274 $(RC_SRCS16:.rc=.res): $(WRC)
275
276 $(MC_SRCS:.mc=.mc.rc): $(WMC)
277
278 $(SUBDIRS): dummy
279         @cd $@ && $(MAKE)
280
281 dummy:
282
283 .PHONY: dummy $(SUBDIRS)
284
285 # End of global rules