- added some missing strings to resources
[wine.git] / Make.rules.in
blob55d982d0ab97c1be8b1fe7e5852acb8ff9b8f342
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
21 # First some useful definitions
23 SHELL     = /bin/sh
24 CC        = @CC@
25 CPP       = @CPP@
26 CFLAGS    = @CFLAGS@
27 LIBS      = @LIBS@
28 YACC      = @YACC@
29 LEX       = @LEX@
30 LEXLIB    = @LEXLIB@
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@ rc
40 RANLIB    = @RANLIB@
41 STRIP     = @STRIP@
42 WINDRES   = @WINDRES@
43 LN        = @LN@
44 LN_S      = @LN_S@
45 TOOLSDIR  = @TOOLSDIR@
46 AS        = @AS@
47 LD        = @LD@
48 LDFLAGS   = @LDFLAGS@
49 LDCOMBINE = $(LD) -r
50 RM        = rm -f
51 MV        = mv
52 C2MAN     = @C2MAN@
53 LINT      = @LINT@
54 LINTFLAGS = @LINTFLAGS@
55 INCLUDES     = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
56 EXTRACFLAGS  = @EXTRACFLAGS@
57 ALLCFLAGS    = $(INCLUDES) $(DEFS) $(EXTRACFLAGS) $(CFLAGS)
58 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
59 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
60 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
61 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
62 RUNTEST      = $(TOPSRCDIR)/tools/runtest
63 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
64 MAKEDEP      = $(TOOLSDIR)/tools/makedep
65 WRC          = $(TOOLSDIR)/tools/wrc/wrc
66 WMC          = $(TOOLSDIR)/tools/wmc/wmc
67 WIDL         = $(TOOLSDIR)/tools/widl/widl
68 RC           = $(WRC)
69 RC16         = $(WRC)
70 RCFLAGS      = --nostdinc $(INCLUDES) $(EXTRARCFLAGS)
71 RC16FLAGS    = -O res16 $(RCFLAGS)
72 LDPATH       = @LDPATH@
73 DLLDIR       = $(TOPOBJDIR)/dlls
74 LIBDIR       = $(TOPOBJDIR)/libs
75 LIBPORT      = -L$(TOPOBJDIR)/libs/port -lwine_port
76 LIBUNICODE   = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
77 LIBUUID      = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
78 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
80 @SET_MAKE@
82 # Installation infos
84 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
85 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
86 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
87 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
88 prefix          = @prefix@
89 exec_prefix     = @exec_prefix@
90 bindir          = @bindir@
91 libdir          = @libdir@
92 datadir         = @datadir@
93 infodir         = @infodir@
94 mandir          = @mandir@
95 sysconfdir      = @sysconfdir@
96 includedir      = @includedir@/wine
97 dlldir          = @libdir@/wine
98 prog_manext     = 1
99 api_manext      = 3w
100 conf_manext     = 5
101 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
102                   *.flc *.spec.c *.spec.def *.glue.c *.dbg.c y.tab.c y.tab.h @LEX_OUTPUT_ROOT@.c core
104 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
106 RCOBJS = $(RC_SRCS:.rc=.res.o)
107 LINTS  = $(C_SRCS:.c=.ln)
109 # Implicit rules
111 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .spec.def .ok
113 .c.o:
114         $(CC) -c $(ALLCFLAGS) -o $@ $<
116 .s.o:
117         $(AS) -o $@ $<
119 .mc.mc.rc:
120         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
122 .rc.res:
123         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
125 .res.res.o:
126         $(WINDRES) -i $< -o $@
128 .spec.spec.c:
129         $(WINEBUILD) $(DEFS) -o $@ --main-module $(MODULE) --spec $<
131 .spec.spec.def:
132         $(WINEBUILD) $(DEFS) -o $@ --def $<
134 .c.ln:
135         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
137 .c.ok:
138         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
140 # 'all' target first in case the enclosing Makefile didn't define any target
142 all: Makefile
144 filter:
145         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
147 .PHONY: all filter
149 # Rule for main module debug channels
151 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
152         $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
154 # Rule to rebuild the tools
156 $(MAKEDEP):
157         cd $(TOOLSDIR)/tools && $(MAKE) `basename $@`
159 # Rules for makefile
161 Makefile: Makefile.in $(TOPSRCDIR)/configure
162         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
163         @exit 1
165 # Rule for linting
167 $(MODULE).ln : $(LINTS)
168         if test "$(LINTS)" ; \
169         then \
170                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
171                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
172         else \
173                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
174         fi
176 lint:: $(MODULE).ln
178 # Rules for Windows API checking
180 winapi_check:: dummy
181         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
183 .PHONY: winapi_check
185 # Rules for dependencies
187 $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
188         cd `dirname $@` && $(MAKE) depend
190 depend: $(MAKEDEP) $(SUBDIRS:%=%/__depend__)
191         $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
193 .PHONY: depend $(SUBDIRS:%=%/__depend__)
195 # Rules for cleaning
197 $(SUBDIRS:%=%/__clean__): dummy
198         cd `dirname $@` && $(MAKE) clean
200 $(SUBDIRS:%=%/__testclean__): dummy
201         cd `dirname $@` && $(MAKE) testclean
203 $(EXTRASUBDIRS:%=%/__clean__): dummy
204         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
206 testclean:: $(SUBDIRS:%=%/__testclean__)
208 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
209         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
211 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
213 # Rules for installing
215 $(SUBDIRS:%=%/__install__): dummy
216         cd `dirname $@` && $(MAKE) install
218 $(SUBDIRS:%=%/__install-lib__): dummy
219         cd `dirname $@` && $(MAKE) install-lib
221 $(SUBDIRS:%=%/__install-dev__): dummy
222         cd `dirname $@` && $(MAKE) install-dev
224 $(SUBDIRS:%=%/__uninstall__): dummy
225         cd `dirname $@` && $(MAKE) uninstall
227 install:: $(INSTALLSUBDIRS:%=%/__install__)
229 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
231 .PHONY: install install-lib install-dev uninstall \
232         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
233         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
235 # Rules for checking that no imports are missing
237 $(SUBDIRS:%=%/__checklink__): dummy
238         @cd `dirname $@` && $(MAKE) checklink
240 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
242 # Rules for testing
244 $(SUBDIRS:%=%/__test__): dummy
245         @cd `dirname $@` && $(MAKE) test
247 $(SUBDIRS:%=%/__crosstest__): dummy
248         @cd `dirname $@` && $(MAKE) crosstest
250 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
252 # Misc. rules
254 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC)
256 $(MC_SRCS:.mc=.mc.rc): $(WMC)
258 $(IDL_SRCS:.idl=.h): $(WIDL)
260 $(SUBDIRS): dummy
261         @cd $@ && $(MAKE)
263 dummy:
265 .PHONY: dummy $(SUBDIRS)
267 # End of global rules