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