Fixed segmented/linear buffers manipulation.
[wine.git] / Make.rules.in
blob48a5caf9f41407e1721b5fd2d97937fbbddf7894
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         ddraw \
89         dinput \
90         dplayx \
91         dsound \
92         gdi32 \
93         icmp \
94         imagehlp \
95         imm32 \
96         joystick.drv \
97         lz32 \
98         mcianim.drv \
99         mciavi.drv \
100         mcicda.drv \
101         mciseq.drv \
102         mciwave.drv \
103         midimap.drv \
104         mpr \
105         msacm \
106         msacm.drv \
107         msacm32 \
108         msnet32 \
109         msvfw32 \
110         odbc32 \
111         ole32 \
112         oleaut32 \
113         olecli32 \
114         oledlg \
115         olepro32 \
116         olesvr32 \
117         psapi \
118         rasapi32 \
119         setupx \
120         shell32 \
121         sound \
122         stress \
123         tapi32 \
124         ttydrv \
125         user32 \
126         version \
127         w32skrnl \
128         win87em \
129         windebug \
130         wineoss.drv \
131         wing \
132         winmm \
133         winspool \
134         wnaspi32 \
135         wsock32 \
136         x11drv
138 # Implicit rules
140 .SUFFIXES:
141 .SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c $(SUFFIXES)
143 .c.o:
144         $(CC) -c $(ALLCFLAGS) -o $*.o $<
146 .spec.c.spec.o:
147         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
149 .s.o:
150         $(AS) -o $*.o $<  
152 .S.o:
153         $(CC) -c -o $*.o $<  
155 .rc.s:
156         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
158 .rc.h:
159         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
161 .rc.res:
162         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
164 .res.s:
165         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
167 .res.h:
168         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
170 .spec.spec.c:
171         $(BUILD) @BUILDFLAGS@ -o $@ -spec $<
173 .c.glue.c:
174         $(BUILD) @BUILDFLAGS@ -o $@ -glue $<
176 .c.ln:
177         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
179 .PHONY: all install uninstall clean distclean depend dummy
181 # 'all' target first in case the enclosing Makefile didn't define any target
183 all: Makefile
185 # Rule to rebuild the resource compiler
187 $(WRC) check_wrc:
188         cd $(TOPOBJDIR)/tools/wrc && $(MAKE) wrc@PROGEXT@
190 # Rule to rebuild the 'makedep' program
192 $(MAKEDEP) check_makedep:
193         cd $(TOPOBJDIR)/tools && $(MAKE) makedep@PROGEXT@
195 # Rule to rebuild the 'build' program
197 $(BUILD) checkbuild:
198         cd $(TOPOBJDIR)/tools && $(MAKE) build@PROGEXT@
200 # Rule to rebuild winestub.o
202 $(WINESTUB) check_winestub:
203         cd $(TOPOBJDIR)/library && $(MAKE) winestub.o
205 # Rule for main module
207 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
208         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
210 # Rules for makefile
212 Makefile: Makefile.in $(TOPSRCDIR)/configure
213         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
214         @exit 1
216 # Rules for auto documentation
218 man: $(C_SRCS)
219         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
221 html: $(C_SRCS)
222         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
224 # Rule for linting
226 $(MODULE).ln : $(LINTS)
227         if test "$(LINTS)" ; \
228         then \
229                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
230                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
231         else \
232                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
233         fi
235 lint:: $(MODULE).ln
237 # Rules for Windows API checking
239 winapi_check::
240         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
242 # Misc. rules
244 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
246 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
248 $(RC_SRCS:.rc=.s): $(WRC)
250 depend:: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
251         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
253 clean::
254         $(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)
256 dummy:
258 # End of global rules