~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/Make.rules.in

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  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 # MODCFLAGS    : extra CFLAGS for this module
 21 
 22 # First some useful definitions
 23 
 24 SHELL     = /bin/sh
 25 CC        = @CC@
 26 CFLAGS    = @CFLAGS@
 27 CPPFLAGS  = @CPPFLAGS@
 28 LIBS      = @LIBS@
 29 BISON     = @BISON@
 30 FLEX      = @FLEX@
 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@
 40 ARFLAGS   = @ARFLAGS@
 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 NM        = @NM@
 50 LDFLAGS   = @LDFLAGS@
 51 PRELINK   = @PRELINK@
 52 RM        = rm -f
 53 MV        = mv
 54 LINT      = @LINT@
 55 LINTFLAGS = @LINTFLAGS@
 56 FONTFORGE = @FONTFORGE@
 57 RSVG      = @RSVG@
 58 ICOTOOL   = @ICOTOOL@
 59 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
 60 EXTRACFLAGS  = @EXTRACFLAGS@
 61 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
 62 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
 63 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
 64 TARGETFLAGS  = @TARGETFLAGS@
 65 WINEBUILDFLAGS = $(TARGETFLAGS) $(DLLFLAGS)
 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 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
 72 MAKEDEP      = $(TOOLSDIR)/tools/makedep
 73 MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests
 74 WRC          = $(TOOLSDIR)/tools/wrc/wrc
 75 WMC          = $(TOOLSDIR)/tools/wmc/wmc
 76 WIDL         = $(TOOLSDIR)/tools/widl/widl
 77 WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild
 78 RELPATH      = $(TOOLSDIR)/tools/relpath
 79 SFNT2FNT     = $(TOOLSDIR)/tools/sfnt2fnt
 80 FNT2FON      = $(TOOLSDIR)/tools/fnt2fon
 81 RC           = $(WRC)
 82 RC16         = $(WRC)
 83 RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
 84 RC16FLAGS    = -O res16 $(RCFLAGS)
 85 LDPATH       = @LDPATH@
 86 DLLDIR       = $(TOPOBJDIR)/dlls
 87 LIBPORT      = $(TOPOBJDIR)/libs/port/libwine_port.a
 88 LIBWPP       = $(TOPOBJDIR)/libs/wpp/libwpp.a
 89 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
 90 LDRPATH_INSTALL = @LDRPATH_INSTALL@
 91 LDRPATH_LOCAL   = @LDRPATH_LOCAL@
 92 
 93 @SET_MAKE@
 94 
 95 # Installation infos
 96 
 97 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
 98 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
 99 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
100 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
101 prefix          = @prefix@
102 exec_prefix     = @exec_prefix@
103 bindir          = @bindir@
104 libdir          = @libdir@
105 datarootdir     = @datarootdir@
106 datadir         = @datadir@
107 infodir         = @infodir@
108 mandir          = @mandir@
109 sysconfdir      = @sysconfdir@
110 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 IDL_GEN_C_SRCS  = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
118                   $(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
119 IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
120                   $(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)
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)
126 
127 RCOBJS = $(RC_SRCS:.rc=.res.o)
128 LINTS  = $(C_SRCS:.c=.ln)
129 
130 # 'all' target first in case the enclosing Makefile didn't define any target
131 
132 all:
133 
134 filter: dummy
135         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
136 
137 .PHONY: all filter
138 
139 # Implicit rules
140 
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
142 
143 .c.o:
144         $(CC) -c $(ALLCFLAGS) -o $@ $<
145 
146 .s.o:
147         $(AS) -o $@ $<
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 
161 .rc.res:
162         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
163 
164 .res.res.o:
165         $(WINDRES) -i $< -o $@
166 
167 .spec.spec.o:
168         $(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
169 
170 .idl.h:
171         $(WIDL) $(IDLFLAGS) -h -H $@ $<
172 
173 .idl_c.c:
174         $(WIDL) $(IDLFLAGS) -c -C $@ $<
175 
176 .idl_i.c:
177         $(WIDL) $(IDLFLAGS) -u -U $@ $<
178 
179 .idl_p.c:
180         $(WIDL) $(IDLFLAGS) -p -P $@ $<
181 
182 .idl_s.c:
183         $(WIDL) $(IDLFLAGS) -s -S $@ $<
184 
185 .idl.tlb:
186         $(WIDL) $(IDLFLAGS) -t -T $@ $<
187 
188 .c.ln:
189         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
190 
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 .svg.ico:
201         $(RSVG) -w 16 -h 16 -f png $< $*-16.png
202         $(RSVG) -w 32 -h 32 -f png $< $*-32.png
203         $(RSVG) -w 48 -h 48 -f png $< $*-48.png
204         $(ICOTOOL) -c -o $@ $*-16.png $*-32.png $*-48.png
205         $(RM) $*-16.png $*-32.png $*-48.png
206 
207 # Rules for IDL files
208 
209 dlldata.c: $(WIDL) Makefile.in
210         $(WIDL) $(IDLFLAGS) --dlldata-only --dlldata=$@ $(IDL_P_SRCS)
211 
212 # Rule for linting
213 
214 $(MODULE).ln : $(LINTS)
215         if test "$(LINTS)" ; \
216         then \
217                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
218                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
219         else \
220                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
221         fi
222 
223 lint:: $(MODULE).ln
224 
225 # Rules for Windows API checking
226 
227 winapi_check:: dummy
228         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
229 
230 .PHONY: winapi_check
231 
232 # Rules for dependencies
233 
234 DEPEND_SRCS = $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) \
235               $(IDL_H_SRCS) $(IDL_C_SRCS) $(IDL_I_SRCS) $(IDL_P_SRCS) $(IDL_S_SRCS) \
236               $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS) $(IDL_TLB_SRCS:.idl=.tlb) \
237               $(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 .PHONY: depend $(SUBDIRS:%=%/__depend__)
246 
247 # Rules for cleaning
248 
249 $(SUBDIRS:%=%/__clean__): dummy
250         @cd `dirname $@` && $(MAKE) clean
251 
252 $(EXTRASUBDIRS:%=%/__clean__): dummy
253         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
254 
255 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
256         $(RM) $(CLEAN_FILES) $(CLEAN_TARGETS) $(PROGRAMS) $(MANPAGES)
257 
258 .PHONY: clean $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
259 
260 # Rules for installing
261 
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__) dummy
275 install-lib:: $(INSTALLSUBDIRS:%=%/__install-lib__) dummy
276 install-dev:: $(INSTALLSUBDIRS:%=%/__install-dev__) dummy
277 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__) dummy
278 
279 $(INSTALLDIRS):
280         $(MKINSTALLDIRS) $@
281 
282 .PHONY: install install-lib install-dev uninstall \
283         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
284         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
285 
286 # Rules for testing
287 
288 $(TESTSUBDIRS:%=%/__test__): dummy
289         @cd `dirname $@` && $(MAKE) test
290 
291 $(TESTSUBDIRS:%=%/__crosstest__): dummy
292         @cd `dirname $@` && $(MAKE) crosstest
293 
294 $(TESTSUBDIRS:%=%/__testclean__): dummy
295         @cd `dirname $@` && $(MAKE) testclean
296 
297 check test:: $(TESTSUBDIRS:%=%/__test__) dummy
298 
299 crosstest:: $(TESTSUBDIRS:%=%/__crosstest__) dummy
300 
301 testclean:: $(TESTSUBDIRS:%=%/__testclean__) dummy
302 
303 .PHONY: check test testclean crosstest $(TESTSUBDIRS:%=%/__test__) $(TESTSUBDIRS:%=%/__crosstest__) $(TESTSUBDIRS:%=%/__testclean__) 
304 
305 # Rules for auto documentation
306 
307 $(DOCSUBDIRS:%=%/__man__): dummy
308         @cd `dirname $@` && $(MAKE) man
309 
310 $(DOCSUBDIRS:%=%/__doc_html__): dummy
311         @cd `dirname $@` && $(MAKE) doc-html
312 
313 $(DOCSUBDIRS:%=%/__doc_sgml__): dummy
314         @cd `dirname $@` && $(MAKE) doc-sgml
315 
316 man: $(DOCSUBDIRS:%=%/__man__)
317 doc-html: $(DOCSUBDIRS:%=%/__doc_html__)
318 doc-sgml: $(DOCSUBDIRS:%=%/__doc_sgml__)
319 
320 .PHONY: man doc-html doc-sgml $(DOCSUBDIRS:%=%/__man__) $(DOCSUBDIRS:%=%/__doc_html__) $(DOCSUBDIRS:%=%/__doc_sgml__)
321 
322 # Misc. rules
323 
324 $(MC_SRCS:.mc=.mc.rc): $(WMC)
325 
326 $(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
327 
328 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC)
329 
330 $(SUBDIRS): dummy
331         @cd $@ && $(MAKE)
332 
333 dummy:
334 
335 .PHONY: dummy $(SUBDIRS)
336 
337 # End of global rules

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.