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