Synchronize winldap.h with winldap_private.h.
[wine] / Make.rules.in
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
21 # First some useful definitions
22
23 SHELL     = /bin/sh
24 CC        = @CC@
25 CFLAGS    = @CFLAGS@
26 CPPFLAGS  = @CPPFLAGS@
27 LIBS      = @LIBS@
28 BISON     = @BISON@
29 YACC      = $(BISON) -y
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)
59 ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
60 IDLFLAGS     = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
61 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
62 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
63 WINEWRAPPER  = $(TOPSRCDIR)/tools/winewrapper
64 C2MAN        = $(TOPSRCDIR)/tools/c2man.pl
65 RUNTEST      = $(TOPSRCDIR)/tools/runtest
66 WINEBUILD    = $(TOOLSDIR)/tools/winebuild/winebuild
67 MAKEDEP      = $(TOOLSDIR)/tools/makedep
68 MAKECTESTS   = $(TOOLSDIR)/tools/make_ctests
69 WRC          = $(TOOLSDIR)/tools/wrc/wrc
70 BIN2RES      = $(TOOLSDIR)/tools/bin2res
71 WMC          = $(TOOLSDIR)/tools/wmc/wmc
72 WIDL         = $(TOOLSDIR)/tools/widl/widl
73 WINEGCC      = $(TOOLSDIR)/tools/winegcc/winegcc
74 SFNT2FNT     = $(TOOLSDIR)/tools/sfnt2fnt
75 FNT2FON      = $(TOOLSDIR)/tools/fnt2fon
76 RC           = $(WRC)
77 RC16         = $(WRC)
78 RCFLAGS      = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
79 RC16FLAGS    = -O res16 $(RCFLAGS)
80 LDPATH       = @LDPATH@
81 DLLDIR       = $(TOPOBJDIR)/dlls
82 LIBDIR       = $(TOPOBJDIR)/libs
83 LIBPORT      = -L$(TOPOBJDIR)/libs/port -lwine_port
84 LIBUNICODE   = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
85 LIBWINE      = -L$(TOPOBJDIR)/libs/wine -lwine
86
87 @SET_MAKE@
88
89 # Installation infos
90
91 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
92 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
93 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
94 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
95 prefix          = @prefix@
96 exec_prefix     = @exec_prefix@
97 bindir          = @bindir@
98 libdir          = @libdir@
99 datadir         = @datadir@
100 infodir         = @infodir@
101 mandir          = @mandir@
102 sysconfdir      = @sysconfdir@
103 includedir      = @includedir@/wine
104 dlldir          = @libdir@/wine
105 prog_manext     = 1
106 api_manext      = 3w
107 conf_manext     = 5
108 CLEAN_FILES     = *.o *.a *.so *.ln *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej \
109                   *.flc *.spec.c *.dbg.c *.tab.c *.tab.h @LEX_OUTPUT_ROOT@.c core
110
111 OBJS = $(C_SRCS:.c=.o) $(EXTRA_OBJS)
112
113 RCOBJS = $(RC_SRCS:.rc=.res.o)
114 LINTS  = $(C_SRCS:.c=.ln)
115
116 # Implicit rules
117
118 .SUFFIXES: .mc .rc .mc.rc .res .res.o .spec .spec.c .idl .tlb .h .ok .sfd .ttf
119
120 .c.o:
121         $(CC) -c $(ALLCFLAGS) -o $@ $<
122
123 .s.o:
124         $(AS) -o $@ $<
125
126 .mc.mc.rc:
127         $(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
128
129 .rc.res:
130         $(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
131
132 .res.res.o:
133         $(WINDRES) -i $< -o $@
134
135 .spec.spec.c:
136         $(WINEBUILD) $(DEFS) --dll -o $@ --main-module $(MODULE) --export $<
137
138 .idl.h:
139         $(WIDL) $(IDLFLAGS) -h -H $@ $<
140
141 .idl.tlb:
142         $(WIDL) $(IDLFLAGS) -t -T $@ $<
143
144 .c.ln:
145         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
146
147 .c.ok:
148         $(RUNTEST) $(RUNTESTFLAGS) $< && touch $@
149
150 .sfd.ttf:
151         $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@
152
153 # 'all' target first in case the enclosing Makefile didn't define any target
154
155 all: Makefile
156
157 filter:
158         @$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
159
160 .PHONY: all filter
161
162 # Rules for resources
163
164 $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
165         $(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
166
167 $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(RC_TLB)
168
169 # Rule for main module debug channels
170
171 $(MODULE).dbg.c: $(C_SRCS) $(C_SRCS16) $(WINEBUILD)
172         $(WINEBUILD) $(DEFS) -o $@ --debug -C$(SRCDIR) $(C_SRCS) $(C_SRCS16)
173
174 # Rules for makefile
175
176 Makefile: Makefile.in $(TOPSRCDIR)/configure
177         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
178         @exit 1
179
180 # Rule for linting
181
182 $(MODULE).ln : $(LINTS)
183         if test "$(LINTS)" ; \
184         then \
185                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
186                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
187         else \
188                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
189         fi
190
191 lint:: $(MODULE).ln
192
193 # Rules for Windows API checking
194
195 winapi_check:: dummy
196         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
197
198 .PHONY: winapi_check
199
200 # Rules for dependencies
201
202 $(SUBDIRS:%=%/__depend__): dummy
203         cd `dirname $@` && $(MAKE) depend
204
205 depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__)
206         $(MAKEDEP) $(INCLUDES) -C$(SRCDIR) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS)
207
208 .PHONY: depend $(SUBDIRS:%=%/__depend__)
209
210 # Rules for cleaning
211
212 $(SUBDIRS:%=%/__clean__): dummy
213         cd `dirname $@` && $(MAKE) clean
214
215 $(SUBDIRS:%=%/__testclean__): dummy
216         cd `dirname $@` && $(MAKE) testclean
217
218 $(EXTRASUBDIRS:%=%/__clean__): dummy
219         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
220
221 testclean:: $(SUBDIRS:%=%/__testclean__)
222
223 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
224         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(IDL_SRCS:.idl=.h) $(PROGRAMS) $(RC_BINARIES) $(RC_TLB)
225
226 .PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
227
228 # Rules for installing
229
230 $(SUBDIRS:%=%/__install__): dummy
231         cd `dirname $@` && $(MAKE) install
232
233 $(SUBDIRS:%=%/__install-lib__): dummy
234         cd `dirname $@` && $(MAKE) install-lib
235
236 $(SUBDIRS:%=%/__install-dev__): dummy
237         cd `dirname $@` && $(MAKE) install-dev
238
239 $(SUBDIRS:%=%/__uninstall__): dummy
240         cd `dirname $@` && $(MAKE) uninstall
241
242 install:: $(INSTALLSUBDIRS:%=%/__install__)
243
244 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
245
246 .PHONY: install install-lib install-dev uninstall \
247         $(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
248         $(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
249
250 # Rules for checking that no imports are missing
251
252 $(SUBDIRS:%=%/__checklink__): dummy
253         @cd `dirname $@` && $(MAKE) checklink
254
255 .PHONY: checklink $(SUBDIRS:%=%/__checklink__)
256
257 # Rules for testing
258
259 $(SUBDIRS:%=%/__test__): dummy
260         @cd `dirname $@` && $(MAKE) test
261
262 $(SUBDIRS:%=%/__crosstest__): dummy
263         @cd `dirname $@` && $(MAKE) crosstest
264
265 .PHONY: check test crosstest $(SUBDIRS:%=%/__test__) $(SUBDIRS:%=%/__crosstest__)
266
267 # Misc. rules
268
269 $(MC_SRCS:.mc=.mc.rc): $(WMC)
270
271 $(IDL_SRCS:.idl=.h): $(WIDL)
272
273 $(RC_TLB:.idl=.tlb): $(WIDL)
274
275 $(SUBDIRS): dummy
276         @cd $@ && $(MAKE)
277
278 dummy:
279
280 .PHONY: dummy $(SUBDIRS)
281
282 # End of global rules