Make.rules.in 9.45 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1
# Global rules shared by all makefiles     -*-Makefile-*-
Alexandre Julliard's avatar
Alexandre Julliard committed
2
#
3
# Each individual makefile must define the following variables:
Alexandre Julliard's avatar
Alexandre Julliard committed
4 5 6 7
# TOPSRCDIR    : top-level source directory
# TOPOBJDIR    : top-level object directory
# SRCDIR       : source directory for this module
# MODULE       : name of the module being built
8 9 10
#
# Each individual makefile may define the following additional variables:
# C_SRCS       : C sources for the module
11
# C_SRCS16     : 16-bit C sources for the module
12 13 14
# RC_SRCS      : resource source files
# EXTRA_SRCS   : extra source files for make depend
# EXTRA_OBJS   : extra object files
15 16
# IMPORTS      : dlls to import
# DELAYIMPORTS : dlls to import in delayed mode
17 18
# SUBDIRS      : subdirectories that contain a Makefile
# EXTRASUBDIRS : subdirectories that do not contain a Makefile
19
# INSTALLSUBDIRS : subdirectories to run make install/uninstall into
20
# MODCFLAGS    : extra CFLAGS for this module
Alexandre Julliard's avatar
Alexandre Julliard committed
21

Alexandre Julliard's avatar
Alexandre Julliard committed
22 23
# First some useful definitions

Alexandre Julliard's avatar
Alexandre Julliard committed
24 25
SHELL     = /bin/sh
CC        = @CC@
26
CFLAGS    = @CFLAGS@
27
CPPFLAGS  = @CPPFLAGS@
Alexandre Julliard's avatar
Alexandre Julliard committed
28
LIBS      = @LIBS@
29
BISON     = @BISON@
30
FLEX      = @FLEX@
31 32
EXEEXT    = @EXEEXT@
OBJEXT    = @OBJEXT@
33
LIBEXT    = @LIBEXT@
34
DLLEXT    = @DLLEXT@
35
IMPLIBEXT = @IMPLIBEXT@
36
LDSHARED  = @LDSHARED@
37
DLLTOOL   = @DLLTOOL@
38
DLLWRAP   = @DLLWRAP@
39 40
AR        = @AR@
ARFLAGS   = @ARFLAGS@
Alexandre Julliard's avatar
Alexandre Julliard committed
41
RANLIB    = @RANLIB@
42 43
STRIP     = @STRIP@
WINDRES   = @WINDRES@
Alexandre Julliard's avatar
Alexandre Julliard committed
44
LN        = @LN@
Alexandre Julliard's avatar
Alexandre Julliard committed
45
LN_S      = @LN_S@
46
TOOLSDIR  = @TOOLSDIR@
47
AS        = @AS@
48
LD        = @LD@
49
NM        = @NM@
50
LDFLAGS   = @LDFLAGS@
51
PRELINK   = @PRELINK@
Alexandre Julliard's avatar
Alexandre Julliard committed
52
RM        = rm -f
53 54 55
MV        = mv
LINT      = @LINT@
LINTFLAGS = @LINTFLAGS@
56
FONTFORGE = @FONTFORGE@
57 58
RSVG      = @RSVG@
ICOTOOL   = @ICOTOOL@
59 60
INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
EXTRACFLAGS  = @EXTRACFLAGS@
61
ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
62
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
63
IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
64 65
TARGETFLAGS  = @TARGETFLAGS@
WINEBUILDFLAGS = $(TARGETFLAGS) $(DLLFLAGS) --as-cmd "$(AS)"
66
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
67
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
68
WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
69
C2MAN        = $(TOPSRCDIR)/tools/c2man.pl
70
RUNTEST      = $(TOPSRCDIR)/tools/runtest
71 72
WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
MAKEDEP      = $(TOOLSDIR)/tools/makedep
73
MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests
74 75
WRC          = $(TOOLSDIR)/tools/wrc/wrc
WMC          = $(TOOLSDIR)/tools/wmc/wmc
76
WIDL         = $(TOOLSDIR)/tools/widl/widl
77
WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc
78
RELPATH      = $(TOOLSDIR)/tools/relpath
79 80
SFNT2FNT     = $(TOOLSDIR)/tools/sfnt2fnt
FNT2FON      = $(TOOLSDIR)/tools/fnt2fon
81 82
RC           = $(WRC)
RC16         = $(WRC)
83
RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
84
RC16FLAGS    = -O res16 $(RCFLAGS)
85 86
LDPATH       = @LDPATH@
DLLDIR       = $(TOPOBJDIR)/dlls
87 88
LIBPORT      = $(TOPOBJDIR)/libs/port/libwine_port.a
LIBWPP       = $(TOPOBJDIR)/libs/wpp/libwpp.a
89
LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
90 91
LDRPATH_INSTALL = @LDRPATH_INSTALL@
LDRPATH_LOCAL   = @LDRPATH_LOCAL@
92

Alexandre Julliard's avatar
Alexandre Julliard committed
93 94
@SET_MAKE@

Alexandre Julliard's avatar
Alexandre Julliard committed
95 96
# Installation infos

97 98 99 100
INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
Alexandre Julliard's avatar
Alexandre Julliard committed
101 102 103 104
prefix          = @prefix@
exec_prefix     = @exec_prefix@
bindir          = @bindir@
libdir          = @libdir@
105
datarootdir     = @datarootdir@
106
datadir         = @datadir@
Alexandre Julliard's avatar
Alexandre Julliard committed
107
infodir         = @infodir@
108
mandir          = @mandir@
109 110
sysconfdir      = @sysconfdir@
includedir      = @includedir@/wine
111
dlldir          = @libdir@/wine
112
prog_manext     = 1
113
api_manext      = 3w
114
conf_manext     = 5
115
CLEAN_FILES     = *.o *.a *.so *.ln *.res *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
116

117 118 119 120
IDL_GEN_C_SRCS  = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
                  $(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
                  $(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
121

122
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:%=dlldata.c) \
123
                $(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
Alexandre Julliard's avatar
Alexandre Julliard committed
124

125
OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(EXTRA_OBJS)
Alexandre Julliard's avatar
Alexandre Julliard committed
126

127 128
RCOBJS = $(RC_SRCS:.rc=.res.o)
LINTS  = $(C_SRCS:.c=.ln)
129

130 131 132 133 134 135 136 137 138
# 'all' target first in case the enclosing Makefile didn't define any target

all:

filter: dummy
	@$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all

.PHONY: all filter

Alexandre Julliard's avatar
Alexandre Julliard committed
139 140
# Implicit rules

141
.SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.o .idl .tlb .h .y .l .tab.c .tab.h .yy.c .ok .man.in .man _c.c _i.c _p.c _s.c @MAINTAINER_MODE@ .sfd .ttf .svg .ico
Alexandre Julliard's avatar
Alexandre Julliard committed
142 143

.c.o:
144
	$(CC) -c $(ALLCFLAGS) -o $@ $<
Alexandre Julliard's avatar
Alexandre Julliard committed
145

Alexandre Julliard's avatar
Alexandre Julliard committed
146
.s.o:
147
	$(AS) -o $@ $<
Alexandre Julliard's avatar
Alexandre Julliard committed
148

149
.y.tab.c:
150
	$(BISON) $(BISONFLAGS) -p $*_ -o $@ $<
151 152

.y.tab.h:
153
	$(BISON) $(BISONFLAGS) -p $*_ -o $*.tab.c -d $<
154 155

.l.yy.c:
156
	$(FLEX) $(LEXFLAGS) -o$@ $<
157

158
.mc.mc.rc:
159
	$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
160

Alexandre Julliard's avatar
Alexandre Julliard committed
161
.rc.res:
162
	$(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
Alexandre Julliard's avatar
Alexandre Julliard committed
163

164 165 166
.res.res.o:
	$(WINDRES) -i $< -o $@

167 168
.spec.spec.o:
	$(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
169

170
.idl.h:
171
	$(WIDL) $(IDLFLAGS) -h -H $@ $<
172

173 174 175 176 177 178 179 180 181 182 183 184
.idl_c.c:
	$(WIDL) $(IDLFLAGS) -c -C $@ $<

.idl_i.c:
	$(WIDL) $(IDLFLAGS) -u -U $@ $<

.idl_p.c:
	$(WIDL) $(IDLFLAGS) -p -P $@ $<

.idl_s.c:
	$(WIDL) $(IDLFLAGS) -s -S $@ $<

Huw Davies's avatar
Huw Davies committed
185 186 187
.idl.tlb:
	$(WIDL) $(IDLFLAGS) -t -T $@ $<

188 189 190
.c.ln:
	$(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )

191
.c.ok:
192
	$(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
193

194
.sfd.ttf:
195
	$(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
196

197
.man.in.man:
198
	LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
199

200 201 202 203 204 205 206
.svg.ico:
	$(RSVG) -w 16 -h 16 -f png $< $*-16.png
	$(RSVG) -w 32 -h 32 -f png $< $*-32.png
	$(RSVG) -w 48 -h 48 -f png $< $*-48.png
	$(ICOTOOL) -c -o $@ $*-16.png $*-32.png $*-48.png
	$(RM) $*-16.png $*-32.png $*-48.png

207 208 209 210 211
# Rules for IDL files

dlldata.c: $(WIDL) Makefile.in
	$(WIDL) $(IDLFLAGS) --dlldata-only --dlldata=$@ $(IDL_P_SRCS)

Alexandre Julliard's avatar
Alexandre Julliard committed
212 213
# Rule for linting

214 215 216 217 218 219 220 221 222 223
$(MODULE).ln : $(LINTS)
	if test "$(LINTS)" ; \
	then \
		$(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
	        $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
	else \
		$(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
	fi

lint:: $(MODULE).ln
Alexandre Julliard's avatar
Alexandre Julliard committed
224

225 226
# Rules for Windows API checking

227
winapi_check:: dummy
228 229
	$(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .

230 231
.PHONY: winapi_check

232 233
# Rules for dependencies

234 235 236 237
DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) \
              $(IDL_H_SRCS) $(IDL_C_SRCS) $(IDL_I_SRCS) $(IDL_P_SRCS) $(IDL_S_SRCS) \
              $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS) $(IDL_TLB_SRCS:.idl=.tlb) \
              $(BISON_SRCS) $(LEX_SRCS) $(EXTRA_SRCS)
238

239
$(SUBDIRS:%=%/__depend__): dummy
240
	@cd `dirname $@` && $(MAKE) depend
241

242
depend: $(SUBDIRS:%=%/__depend__) dummy
243
	$(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(DEPEND_SRCS)
244

245 246
.PHONY: depend $(SUBDIRS:%=%/__depend__)

247 248 249
# Rules for cleaning

$(SUBDIRS:%=%/__clean__): dummy
250
	@cd `dirname $@` && $(MAKE) clean
251 252 253 254 255

$(EXTRASUBDIRS:%=%/__clean__): dummy
	-cd `dirname $@` && $(RM) $(CLEAN_FILES)

clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
256
	$(RM) $(CLEAN_FILES) $(CLEAN_TARGETS) $(PROGRAMS) $(MANPAGES)
257

258
.PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
259

260 261
# Rules for installing

262
$(SUBDIRS:%=%/__install__): dummy
263
	@cd `dirname $@` && $(MAKE) install
264

265
$(SUBDIRS:%=%/__install-lib__): dummy
266
	@cd `dirname $@` && $(MAKE) install-lib
267 268

$(SUBDIRS:%=%/__install-dev__): dummy
269
	@cd `dirname $@` && $(MAKE) install-dev
270 271

$(SUBDIRS:%=%/__uninstall__): dummy
272
	@cd `dirname $@` && $(MAKE) uninstall
273

274
install:: $(INSTALLSUBDIRS:%=%/__install__)
275 276
install-lib:: $(INSTALLSUBDIRS:%=%/__install-lib__)
install-dev:: $(INSTALLSUBDIRS:%=%/__install-dev__)
277 278
uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)

279 280 281
$(INSTALLDIRS):
	$(MKINSTALLDIRS) $@

282
.PHONY: install install-lib install-dev uninstall \
283 284
	$(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
	$(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
285

286
# Rules for testing
287

288
$(TESTSUBDIRS:%=%/__test__): dummy
289 290
	@cd `dirname $@` && $(MAKE) test

291
$(TESTSUBDIRS:%=%/__crosstest__): dummy
292 293
	@cd `dirname $@` && $(MAKE) crosstest

294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
$(TESTSUBDIRS:%=%/__testclean__): dummy
	@cd `dirname $@` && $(MAKE) testclean

check test:: $(TESTSUBDIRS:%=%/__test__)

crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)

testclean:: $(TESTSUBDIRS:%=%/__testclean__)

.PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 

# Rules for auto documentation

$(DOCSUBDIRS:%=%/__man__): dummy
	@cd `dirname $@` && $(MAKE) man

$(DOCSUBDIRS:%=%/__doc_html__): dummy
	@cd `dirname $@` && $(MAKE) doc-html

$(DOCSUBDIRS:%=%/__doc_sgml__): dummy
	@cd `dirname $@` && $(MAKE) doc-sgml

man: $(DOCSUBDIRS:%=%/__man__)
doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)

.PHONY: man doc-html doc-sgml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__)
321

Alexandre Julliard's avatar
Alexandre Julliard committed
322 323
# Misc. rules

324
$(MC_SRCS:.mc=.mc.rc): $(WMC)
325

326
$(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
327

328 329
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC)

330 331
$(SUBDIRS): dummy
	@cd $@ && $(MAKE)
Alexandre Julliard's avatar
Alexandre Julliard committed
332 333

dummy:
Alexandre Julliard's avatar
Alexandre Julliard committed
334

335 336
.PHONY: dummy $(SUBDIRS)

Alexandre Julliard's avatar
Alexandre Julliard committed
337
# End of global rules