Generate CREATE_PROCESS/THREAD debug events internally in the server.
[wine/dcerpc.git] / Make.rules.in
bloba6c0b563338711a0df5e7fb65cd09ea47f821017
1 # Global rules shared by all makefiles     -*-Makefile-*-
3 # Each individual makefile should 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 # C_SRCS       : C sources for the module (optional)
9 # ASM_SRCS     : assembly sources (optional)
10 # GEN_ASM_SRCS : generated assembly sources (optional)
11 # RC_SRCS      : resource source files (optional)
12 # SPEC_SRCS    : interface definition files (optional)
13 # GLUE         : C sources for which glue code needs to be generated (optional)
14 # EXTRA_SRCS   : extra source files for make depend (optional)
15 # EXTRA_OBJS   : extra object files (optional)
16 # WRCEXTRA     : extra wrc flags (e.g. '-p _SysRes') (optional)
18 # First some useful definitions
20 SHELL     = /bin/sh
21 CC        = @CC@
22 CPP       = @CPP@
23 CFLAGS    = @CFLAGS@
24 OPTIONS   = @OPTIONS@ -D_REENTRANT
25 X_CFLAGS  = @X_CFLAGS@
26 X_LIBS    = @X_LIBS@
27 XLIB      = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
28 DLL_LINK  = @DLL_LINK@
29 WINELIB   = $(WINESTUB) $(DLL_LINK)
30 LIBS      = @LIBS@
31 YACC      = @YACC@
32 LEX       = @LEX@
33 LEXLIB    = @LEXLIB@
34 RANLIB    = @RANLIB@
35 LN_S      = @LN_S@
36 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include
37 ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(DEFS) $(OPTIONS) $(X_CFLAGS)
38 LDCOMBINE = ld -r
39 AR        = ar rc
40 RM        = rm -f
41 MV        = mv
42 MKDIR     = mkdir -p
43 C2MAN     = @C2MAN@
44 MANSPECS  = -w $(TOPSRCDIR)/relay32/gdi32.spec \
45             -w $(TOPSRCDIR)/relay32/user32.spec \
46             -w $(TOPSRCDIR)/relay32/comctl32.spec \
47             -w $(TOPSRCDIR)/relay32/comdlg32.spec \
48             -w $(TOPSRCDIR)/relay32/kernel32.spec 
49 LINT      = @LINT@
50 LINTFLAGS = @LINTFLAGS@
51 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
52 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
53 BUILD     = $(TOPOBJDIR)/tools/build@PROGEXT@
54 MAKEDEP   = $(TOPOBJDIR)/tools/makedep@PROGEXT@
55 WRC       = $(TOPOBJDIR)/tools/wrc/wrc@PROGEXT@
56 WRCFLAGS  = -c
57 WINESTUB  = $(TOPOBJDIR)/library/winestub.o
58 DLLDIR    = $(TOPOBJDIR)/dlls
59 @SET_MAKE@
61 # Installation infos
63 INSTALL         = @INSTALL@
64 INSTALL_PROGRAM = @INSTALL_PROGRAM@
65 INSTALL_DATA    = @INSTALL_DATA@
66 prefix          = @prefix@
67 exec_prefix     = @exec_prefix@
68 bindir          = @bindir@
69 libdir          = @libdir@
70 infodir         = @infodir@
71 mandir          = @mandir@
72 prog_manext     = 1
73 conf_manext     = 5
74 includedir      = @includedir@/wine
76 OBJS = $(SPEC_SRCS:.spec=.spec.o) $(C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) \
77        $(ASM_SRCS:.S=.o) $(RC_SRCS:.rc=.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
79 LINTS = $(C_SRCS:.c=.ln)
81 # DLL list
83 DLLS = \
84         avifil32 \
85         comctl32 \
86         comdlg32 \
87         dciman32 \
88         dplayx \
89         dsound \
90         icmp \
91         imagehlp \
92         imm32 \
93         joystick.drv \
94         lz32 \
95         mcianim.drv \
96         mciavi.drv \
97         mcicda.drv \
98         mciseq.drv \
99         mciwave.drv \
100         midimap.drv \
101         msacm \
102         msacm.drv \
103         msacm32 \
104         msnet32 \
105         msvfw32 \
106         odbc32 \
107         ole32 \
108         oleaut32 \
109         olecli32 \
110         oledlg \
111         olepro32 \
112         olesvr32 \
113         psapi \
114         rasapi32 \
115         setupx \
116         shell32 \
117         sound \
118         stress \
119         tapi32 \
120         version \
121         w32skrnl \
122         win87em \
123         windebug \
124         wineoss.drv \
125         wing \
126         winmm \
127         winspool \
128         wnaspi32 \
129         wsock32
131 # Implicit rules
133 .SUFFIXES:
134 .SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c $(SUFFIXES)
136 .c.o:
137         $(CC) -c $(ALLCFLAGS) -o $*.o $<
139 .spec.c.spec.o:
140         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
142 .s.o:
143         $(AS) -o $*.o $<  
145 .S.o:
146         $(CC) -c -o $*.o $<  
148 .rc.s:
149         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
151 .rc.h:
152         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
154 .rc.res:
155         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
157 .res.s:
158         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
160 .res.h:
161         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
163 .spec.spec.c:
164         $(BUILD) @BUILDFLAGS@ -o $@ -spec $<
166 .c.glue.c:
167         $(BUILD) @BUILDFLAGS@ -o $@ -glue $<
169 .c.ln:
170         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
172 .PHONY: all install uninstall clean distclean depend dummy
174 # 'all' target first in case the enclosing Makefile didn't define any target
176 all: Makefile
178 # Rule to rebuild the resource compiler
180 $(WRC) check_wrc:
181         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc@PROGEXT@
183 # Rule to rebuild the 'makedep' program
185 $(MAKEDEP) check_makedep:
186         cd $(TOPOBJDIR)/tools && $(MAKE) makedep@PROGEXT@
188 # Rule to rebuild the 'build' program
190 $(BUILD) checkbuild:
191         cd $(TOPOBJDIR)/tools && $(MAKE) build@PROGEXT@
193 # Rule to rebuild winestub.o
195 $(WINESTUB) check_winestub:
196         cd $(TOPOBJDIR)/library && $(MAKE) winestub.o
198 # Rule for main module
200 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
201         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
203 # Rules for makefile
205 Makefile: Makefile.in $(TOPSRCDIR)/configure
206         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
207         @exit 1
209 # Rules for auto documentation
211 man: $(C_SRCS)
212         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
214 html: $(C_SRCS)
215         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
217 # Rule for linting
219 $(MODULE).ln : $(LINTS)
220         if test "$(LINTS)" ; \
221         then \
222                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
223                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
224         else \
225                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
226         fi
228 lint:: $(MODULE).ln
230 # Rules for Windows API checking
232 winapi_check::
233         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
235 # Misc. rules
237 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
239 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
241 $(RC_SRCS:.rc=.s): $(WRC)
243 depend:: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
244         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
246 clean::
247         $(RM) *.o *.a *.so *.ln \#*\# *~ *% .\#* *.bak *.orig *.rej *.flc *.spec.c *.glue.c y.tab.c y.tab.h lex.yy.c core $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(PROGRAMS)
249 dummy:
251 # End of global rules