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