oleview: Added typedef handling to idl viewer.
[wine/multimedia.git] / Make.rules.in
blob18cfd5cacd1fd88e1f74edcddb85b69077feb76d
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
88 @SET_MAKE@
90 # Installation infos
92 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
93 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
94 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
95 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
96 prefix          = @prefix@
97 exec_prefix     = @exec_prefix@
98 bindir          = @bindir@
99 libdir          = @libdir@
100 datarootdir     = @datarootdir@
101 datadir         = @datadir@
102 infodir         = @infodir@
103 mandir          = @mandir@
104 sysconfdir      = @sysconfdir@
105 includedir      = @includedir@/wine
106 dlldir          = @libdir@/wine
107 prog_manext     = 1
108 api_manext      = 3w
109 conf_manext     = 5
110 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
111                   *.flc *.res *.mc.rc *.tab.[ch] @LEX_OUTPUT_ROOT@.c core
113 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
115 RCOBJS = $(RC_SRCS:.rc=.res.o)
116 LINTS  = $(C_SRCS:.c=.ln)
118 # Implicit rules
120 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.o .idl .tlb .h .ok .sfd .ttf .man.in .man _c.c _i.c _p.c _s.c
122 .c.o:
123         $(CC) -c $(ALLCFLAGS) -o $@ $<
125 .s.o:
126         $(AS) -o $@ $<
128 .mc.mc.rc:
129         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
131 .rc.res:
132         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
134 .res.res.o:
135         $(WINDRES) -i $< -o $@
137 .spec.spec.o:
138         $(WINEBUILD) $(WINEBUILDFLAGS) --dll -o $@ --main-module $(MODULE) --export $<
140 .idl.h:
141         $(WIDL) $(IDLFLAGS) -h -H $@ $<
143 .idl_c.c:
144         $(WIDL) $(IDLFLAGS) -c -C $@ $<
146 .idl_i.c:
147         $(WIDL) $(IDLFLAGS) -u -U $@ $<
149 .idl_p.c:
150         $(WIDL) $(IDLFLAGS) -p -P $@ $<
152 .idl_s.c:
153         $(WIDL) $(IDLFLAGS) -s -S $@ $<
155 .idl.tlb:
156         $(WIDL) $(IDLFLAGS) -t -T $@ $<
158 .c.ln:
159         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
161 .c.ok:
162         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
164 .sfd.ttf:
165         $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
167 .man.in.man:
168         sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
170 # 'all' target first in case the enclosing Makefile didn't define any target
172 all: Makefile
174 filter:
175         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
177 .PHONY: all filter
179 # Rules for resources
181 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
182         $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
184 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(IDL_TLB_SRCS:.idl=.tlb)
186 # Rules for makefile
188 Makefile: Makefile.in $(TOPSRCDIR)/configure
189         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
190         @exit 1
192 # Rule for linting
194 $(MODULE).ln : $(LINTS)
195         if test "$(LINTS)" ; \
196         then \
197                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
198                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
199         else \
200                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
201         fi
203 lint:: $(MODULE).ln
205 # Rules for Windows API checking
207 winapi_check:: dummy
208         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
210 .PHONY: winapi_check
212 # Rules for dependencies
214 $(SUBDIRS:%=%/__depend__): dummy
215         @cd `dirname $@` && $(MAKE) depend
217 depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__)
218         $(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
220 .PHONY: depend $(SUBDIRS:%=%/__depend__)
222 # Rules for cleaning
224 $(SUBDIRS:%=%/__clean__): dummy
225         @cd `dirname $@` && $(MAKE) clean
227 $(SUBDIRS:%=%/__testclean__): dummy
228         @cd `dirname $@` && $(MAKE) testclean
230 $(EXTRASUBDIRS:%=%/__clean__): dummy
231         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
233 testclean:: $(SUBDIRS:%=%/__testclean__)
235 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
236         $(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)
238 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
240 # Rules for installing
242 $(SUBDIRS:%=%/__install__): dummy
243         @cd `dirname $@` && $(MAKE) install
245 $(SUBDIRS:%=%/__install-lib__): dummy
246         @cd `dirname $@` && $(MAKE) install-lib
248 $(SUBDIRS:%=%/__install-dev__): dummy
249         @cd `dirname $@` && $(MAKE) install-dev
251 $(SUBDIRS:%=%/__uninstall__): dummy
252         @cd `dirname $@` && $(MAKE) uninstall
254 install:: $(INSTALLSUBDIRS:%=%/__install__)
256 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
258 $(INSTALLDIRS):
259         $(MKINSTALLDIRS) $@
261 .PHONY: install install-lib install-dev uninstall \
262         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
263         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
265 # Rules for checking that no imports are missing
267 $(SUBDIRS:%=%/__checklink__): dummy
268         @cd `dirname $@` && $(MAKE) checklink
270 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
272 # Rules for testing
274 $(SUBDIRS:%=%/__test__): dummy
275         @cd `dirname $@` && $(MAKE) test
277 $(SUBDIRS:%=%/__crosstest__): dummy
278         @cd `dirname $@` && $(MAKE) crosstest
280 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
282 # Misc. rules
284 $(MC_SRCS:.mc=.mc.rc): $(WMC)
286 $(IDL_SRCS:.idl=.h): $(WIDL)
288 $(IDL_SRCS:.idl=_c.c): $(WIDL)
289 $(IDL_SRCS:.idl=_i.c): $(WIDL)
290 $(IDL_SRCS:.idl=_p.c): $(WIDL)
291 $(IDL_SRCS:.idl=_s.c): $(WIDL)
293 $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
295 $(SUBDIRS): dummy
296         @cd $@ && $(MAKE)
298 dummy:
300 .PHONY: dummy $(SUBDIRS)
302 # End of global rules