msvcrt/process.h: __stdcall__ defined safely for Mac OSX.
[wine/wine64.git] / Make.rules.in
blob9e7ec07330b569244557c9772388048d1a192d15
1 # Global rules shared by all makefiles     -*-Makefile-*-
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
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
22 # First some useful definitions
24 SHELL     = /bin/sh
25 CC        = @CC@
26 CFLAGS    = @CFLAGS@
27 CPPFLAGS  = @CPPFLAGS@
28 LIBS      = @LIBS@
29 BISON     = @BISON@
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 PRELINK   = @PRELINK@
51 RM        = rm -f
52 MV        = mv
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 FONTFORGE = @FONTFORGE@
56 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
57 EXTRACFLAGS  = @EXTRACFLAGS@
58 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
59 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
60 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
61 WINEBUILDFLAGS = $(DLLFLAGS) --as-cmd "$(AS)"
62 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
63 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/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 MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests
70 WRC          = $(TOOLSDIR)/tools/wrc/wrc
71 BIN2RES      = $(TOOLSDIR)/tools/bin2res
72 WMC          = $(TOOLSDIR)/tools/wmc/wmc
73 WIDL         = $(TOOLSDIR)/tools/widl/widl
74 WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc
75 RELPATH      = $(TOOLSDIR)/tools/relpath
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 LIBPORT      = $(TOPOBJDIR)/libs/port/libwine_port.a
85 LIBWPP       = $(TOPOBJDIR)/libs/wpp/libwpp.a
86 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
87 LIBWINE_LDFLAGS = @LIBWINE_LDFLAGS@ $(LIBWINE)
89 @SET_MAKE@
91 # Installation infos
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 datarootdir     = @datarootdir@
102 datadir         = @datadir@
103 infodir         = @infodir@
104 mandir          = @mandir@
105 sysconfdir      = @sysconfdir@
106 includedir      = @includedir@/wine
107 dlldir          = @libdir@/wine
108 prog_manext     = 1
109 api_manext      = 3w
110 conf_manext     = 5
111 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
112                   *.flc *.res *.mc.rc *.tab.[ch] *.yy.c core
114 OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(EXTRA_OBJS)
116 RCOBJS = $(RC_SRCS:.rc=.res.o)
117 LINTS  = $(C_SRCS:.c=.ln)
119 # Implicit rules
121 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.o .idl .tlb .h .y .l .tab.c .tab.h .yy.c .ok .sfd .ttf .man.in .man _c.c _i.c _p.c _s.c
123 .c.o:
124         $(CC) -c $(ALLCFLAGS) -o $@ $<
126 .s.o:
127         $(AS) -o $@ $<
129 .y.tab.c:
130         $(BISON) $(BISONFLAGS) -p $*_ -o $@ $<
132 .y.tab.h:
133         $(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<
135 .l.yy.c:
136         $(LEX) $(LEXFLAGS) -t $< >$@ || ($(RM) $@ && exit 1)
138 .mc.mc.rc:
139         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
141 .rc.res:
142         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
144 .res.res.o:
145         $(WINDRES) -i $< -o $@
147 .spec.spec.o:
148         $(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
150 .idl.h:
151         $(WIDL) $(IDLFLAGS) -h -H $@ $<
153 .idl_c.c:
154         $(WIDL) $(IDLFLAGS) -c -C $@ $<
156 .idl_i.c:
157         $(WIDL) $(IDLFLAGS) -u -U $@ $<
159 .idl_p.c:
160         $(WIDL) $(IDLFLAGS) -p -P $@ $<
162 .idl_s.c:
163         $(WIDL) $(IDLFLAGS) -s -S $@ $<
165 .idl.tlb:
166         $(WIDL) $(IDLFLAGS) -t -T $@ $<
168 .c.ln:
169         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
171 .c.ok:
172         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
174 .sfd.ttf:
175         $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
177 .man.in.man:
178         sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
180 # 'all' target first in case the enclosing Makefile didn't define any target
182 all:
184 filter: dummy
185         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
187 .PHONY: all filter
189 # Rules for resources
191 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
192         $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
194 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(IDL_TLB_SRCS:.idl=.tlb)
196 # Rule for linting
198 $(MODULE).ln : $(LINTS)
199         if test "$(LINTS)" ; \
200         then \
201                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
202                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
203         else \
204                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
205         fi
207 lint:: $(MODULE).ln
209 # Rules for Windows API checking
211 winapi_check:: dummy
212         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
214 .PHONY: winapi_check
216 # Rules for dependencies
218 DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(BISON_SRCS) $(LEX_SRCS) $(EXTRA_SRCS)
220 $(SUBDIRS:%=%/__depend__): dummy
221         @cd `dirname $@` && $(MAKE) depend
223 depend: $(SUBDIRS:%=%/__depend__) dummy
224         $(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(DEPEND_SRCS)
226 .PHONY: depend $(SUBDIRS:%=%/__depend__)
228 # Rules for cleaning
230 $(SUBDIRS:%=%/__clean__): dummy
231         @cd `dirname $@` && $(MAKE) clean
233 $(EXTRASUBDIRS:%=%/__clean__): dummy
234         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
236 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
237         $(RM) $(CLEAN_FILES) $(IDL_SRCS:.idl=.h) $(IDL_SRCS:.idl=_c.c) $(IDL_SRCS:.idl=_i.c) $(IDL_SRCS:.idl=_p.c) $(IDL_SRCS:.idl=_s.c) $(IDL_TLB_SRCS:.idl=.tlb) $(PROGRAMS) $(RC_BINARIES) $(MANPAGES)
239 .PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
241 # Rules for installing
243 $(SUBDIRS:%=%/__install__): dummy
244         @cd `dirname $@` && $(MAKE) install
246 $(SUBDIRS:%=%/__install-lib__): dummy
247         @cd `dirname $@` && $(MAKE) install-lib
249 $(SUBDIRS:%=%/__install-dev__): dummy
250         @cd `dirname $@` && $(MAKE) install-dev
252 $(SUBDIRS:%=%/__uninstall__): dummy
253         @cd `dirname $@` && $(MAKE) uninstall
255 install:: $(INSTALLSUBDIRS:%=%/__install__)
257 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
259 $(INSTALLDIRS):
260         $(MKINSTALLDIRS) $@
262 .PHONY: install install-lib install-dev uninstall \
263         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
264         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
266 # Rules for testing
268 $(TESTSUBDIRS:%=%/__test__): dummy
269         @cd `dirname $@` && $(MAKE) test
271 $(TESTSUBDIRS:%=%/__crosstest__): dummy
272         @cd `dirname $@` && $(MAKE) crosstest
274 $(TESTSUBDIRS:%=%/__testclean__): dummy
275         @cd `dirname $@` && $(MAKE) testclean
277 check test:: $(TESTSUBDIRS:%=%/__test__)
279 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
281 testclean:: $(TESTSUBDIRS:%=%/__testclean__)
283 .PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 
285 # Rules for auto documentation
287 $(DOCSUBDIRS:%=%/__man__): dummy
288         @cd `dirname $@` && $(MAKE) man
290 $(DOCSUBDIRS:%=%/__doc_html__): dummy
291         @cd `dirname $@` && $(MAKE) doc-html
293 $(DOCSUBDIRS:%=%/__doc_sgml__): dummy
294         @cd `dirname $@` && $(MAKE) doc-sgml
296 man: $(DOCSUBDIRS:%=%/__man__)
297 doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
298 doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)
300 .PHONY: man doc-html doc-sgml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__)
302 # Misc. rules
304 $(MC_SRCS:.mc=.mc.rc): $(WMC)
306 $(IDL_SRCS:.idl=.h): $(WIDL)
308 $(IDL_SRCS:.idl=_c.c): $(WIDL)
309 $(IDL_SRCS:.idl=_i.c): $(WIDL)
310 $(IDL_SRCS:.idl=_p.c): $(WIDL)
311 $(IDL_SRCS:.idl=_s.c): $(WIDL)
313 $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
315 $(SUBDIRS): dummy
316         @cd $@ && $(MAKE)
318 dummy:
320 .PHONY: dummy $(SUBDIRS)
322 # End of global rules