Implemented processing of actions SPI_SETKEYBOARDPREF,
[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 # 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
21 # PLTESTS      : Perl test scripts
22 # CTESTS       : C test sources
23
24 # First some useful definitions
25
26 SHELL     = /bin/sh
27 CC        = @CC@
28 CPP       = @CPP@
29 CFLAGS    = @CFLAGS@
30 OPTIONS   = @OPTIONS@ -D_REENTRANT
31 X_CFLAGS  = @X_CFLAGS@
32 X_LIBS    = @X_LIBS@
33 XLIB      = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
34 LIBS      = @LIBS@
35 YACC      = @YACC@
36 LEX       = @LEX@
37 LEXLIB    = @LEXLIB@
38 LIBEXT    = @LIBEXT@
39 LDSHARED  = @LDSHARED@
40 DLLWRAP   = @DLLWRAP@
41 DLLWRAPFLAGS = --add-stdcall-alias
42 RANLIB    = @RANLIB@
43 LN_S      = @LN_S@
44 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
45 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
46 LDCOMBINE = @LDCOMBINE@
47 LDFLAGS   = @LDFLAGS@
48 AR        = ar rc
49 RM        = rm -f
50 MV        = mv
51 MKDIR     = mkdir -p
52 C2MAN     = @C2MAN@
53 MANSPECS  = -w $(TOPSRCDIR)/dlls/gdi/gdi32.spec \
54             -w $(TOPSRCDIR)/dlls/user/user32.spec \
55             -w $(TOPSRCDIR)/dlls/comctl32/comctl32.spec \
56             -w $(TOPSRCDIR)/dlls/commdlg/comdlg32.spec \
57             -w $(TOPSRCDIR)/dlls/kernel/kernel32.spec 
58 LINT      = @LINT@
59 LINTFLAGS = @LINTFLAGS@
60 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
61 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
62 WINETEST     = $(TOPOBJDIR)/programs/winetest/winetest
63 RUNTEST      = $(TOPSRCDIR)/programs/winetest/runtest
64 RUNTESTFLAGS = -q -P wine -T $(TOPOBJDIR)
65 TESTRESULTS  = $(PLTESTS:.pl=.ok) $(CTESTS:.c=.ok)
66 WINEBUILD = $(TOPOBJDIR)/tools/winebuild/winebuild
67 MAKEDEP   = $(TOPOBJDIR)/tools/makedep
68 WRC       = $(TOPOBJDIR)/tools/wrc/wrc
69 WMC       = $(TOPOBJDIR)/tools/wmc/wmc
70 LDPATH    = @LDPATH@
71 DLLDIR    = $(TOPOBJDIR)/dlls
72 LIBWINE   = -L$(TOPOBJDIR)/library -lwine
73 LIBTSX11  = -L$(TOPOBJDIR)/tsx11 -lwine_tsx11
74 LIBUNICODE= -L$(TOPOBJDIR)/unicode -lwine_unicode
75 LIBUUID   = -L$(TOPOBJDIR)/ole -lwine_uuid
76
77 @SET_MAKE@
78
79 # Installation infos
80
81 INSTALL         = @INSTALL@
82 INSTALL_PROGRAM = @INSTALL_PROGRAM@
83 INSTALL_SCRIPT  = @INSTALL_SCRIPT@
84 INSTALL_DATA    = @INSTALL_DATA@
85 prefix          = @prefix@
86 exec_prefix     = @exec_prefix@
87 bindir          = @bindir@
88 libdir          = @libdir@
89 infodir         = @infodir@
90 mandir          = @mandir@
91 prog_manext     = 1
92 conf_manext     = 5
93 includedir      = @includedir@/wine
94 CLEAN_FILES     = *.o *.a *.so *.ln \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
95                   *.flc *.spec.c *.glue.c y.tab.c y.tab.h lex.yy.c core
96
97 OBJS = $(SPEC_SRCS:.spec=.spec.o) $(C_SRCS:.c=.o) $(GEN_C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) \
98        $(ASM_SRCS:.S=.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
99
100 LINTS = $(C_SRCS:.c=.ln)
101
102 # Implicit rules
103
104 .SUFFIXES: .mc .rc .mc.rc .res .spec .spec.c .glue.c .pl .ok
105
106 .c.o:
107         $(CC) -c $(ALLCFLAGS) -o $@ $<
108
109 .s.o:
110         $(AS) -o $@ $<
111
112 .S.o:
113         $(CC) -c -o $@ $<
114
115 .mc.mc.rc:
116         $(LDPATH) $(WMC) -i -H /dev/null -o $@ $<
117
118 .rc.res:
119         $(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ -r $<
120
121 .spec.spec.c:
122         $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -L$(DLLDIR) -o $@ -spec $<
123
124 .c.glue.c:
125         $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -o $@ -glue $<
126
127 .c.ln:
128         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
129
130 .pl.ok:
131         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
132
133 .PHONY: all install uninstall clean distclean depend dummy test testclean
134
135 # 'all' target first in case the enclosing Makefile didn't define any target
136
137 all: Makefile
138
139 filter:
140         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
141
142 # Rule for main module intermediate object
143
144 $(MODULE).tmp.o: $(OBJS) Makefile.in
145         $(LDCOMBINE) $(OBJS) -o $@
146         -strip --strip-unneeded $@
147
148 # Rule for main module spec file
149
150 $(MODULE).spec.c: $(MODULE).spec $(RC_SRCS:.rc=.res) $(SYMBOLFILE) $(WINEBUILD)
151         $(LDPATH) $(WINEBUILD) @DLLFLAGS@ -L$(DLLDIR) $(SYMBOLFILE:%=-sym %) -o $@ -spec $(SRCDIR)/$(MODULE).spec
152
153 # Rule to rebuild the resource compiler
154
155 $(WRC):
156         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc
157
158 # Rule to rebuild the message compiler
159
160 $(WMC):
161         cd $(TOPOBJDIR)/tools/wmc && $(MAKE) wmc
162
163 # Rule to rebuild the 'makedep' program
164
165 $(MAKEDEP):
166         cd $(TOPOBJDIR)/tools && $(MAKE) makedep
167
168 # Rule to rebuild the 'winebuild' program
169
170 $(WINEBUILD):
171         cd $(TOPOBJDIR)/tools/winebuild && $(MAKE) winebuild
172
173 # Rules for makefile
174
175 Makefile: Makefile.in $(TOPSRCDIR)/configure
176         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
177         @exit 1
178
179 # Rules for auto documentation
180
181 $(SUBDIRS:%=%/__man__): dummy
182         cd `dirname $@` && $(MAKE) man
183
184 man: $(C_SRCS) $(SUBDIRS:%=%/__man__)
185         if [ -n "$(C_SRCS)" ]; then $(MKDIR) $(TOPOBJDIR)/documentation/man3w; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done; fi
186
187 $(SUBDIRS:%=%/__doc_html__): dummy
188         cd `dirname $@` && $(MAKE) doc-html
189
190 doc-html: $(C_SRCS) $(SUBDIRS:%=%/__doc_html__)
191         if [ -n "$(C_SRCS)" ]; then $(MKDIR) $(TOPOBJDIR)/documentation/html; for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done; fi
192
193 # Rule for linting
194
195 $(MODULE).ln : $(LINTS)
196         if test "$(LINTS)" ; \
197         then \
198                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
199                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
200         else \
201                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
202         fi
203
204 lint:: $(MODULE).ln
205
206 # Rules for Windows API checking
207
208 winapi_check::
209         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
210
211 # Rules for dependencies
212
213 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
214         cd `dirname $@` && $(MAKE) depend
215
216 depend: $(MAKEDEP) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
217         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
218
219 # Rules for cleaning
220
221 $(SUBDIRS:%=%/__clean__): dummy
222         cd `dirname $@` && $(MAKE) clean
223
224 $(SUBDIRS:%=%/__testclean__): dummy
225         cd `dirname $@` && $(MAKE) testclean
226
227 $(EXTRASUBDIRS:%=%/__clean__): dummy
228         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
229
230 testclean:: $(SUBDIRS:%=%/__testclean__)
231         $(RM) $(TESTRESULTS)
232
233 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
234         $(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(TESTRESULTS) $(PROGRAMS)
235
236 # Rules for installing
237
238 $(SUBDIRS:%=%/__install__): dummy
239         cd `dirname $@` && $(MAKE) install
240
241 $(SUBDIRS:%=%/__uninstall__): dummy
242         cd `dirname $@` && $(MAKE) uninstall
243
244 # Rules for testing
245
246 test:: $(TESTRESULTS)
247
248 $(TESTRESULTS): $(WINETEST)
249
250 $(WINETEST):
251         cd $(TOPOBJDIR)/programs/winetest && $(MAKE) winetest
252
253 # Misc. rules
254
255 $(SPEC_SRCS:.spec=.spec.c): $(WINEBUILD)
256
257 $(GLUE:.c=.glue.c): $(WINEBUILD)
258
259 $(RC_SRCS:.rc=.res): $(WRC)
260
261 $(RC_SRCS16:.rc=.res): $(WRC)
262
263 $(MC_SRCS:.mc=.mc.rc): $(WMC)
264
265 $(SUBDIRS): dummy
266         @cd $@ && $(MAKE)
267
268 dummy:
269
270 # End of global rules