Report non-hercules video. Turned on int 2a.
[wine] / Make.rules.in
1 # Global rules shared by all makefiles     -*-Makefile-*-
2 #
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)
17
18 # First some useful definitions
19
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 WINELIB   = $(WINESTUB) -L$(TOPOBJDIR) -lwine
29 LIBS      = @LIBS@
30 YACC      = @YACC@
31 LEX       = @LEX@
32 LEXLIB    = @LEXLIB@
33 RANLIB    = @RANLIB@
34 LN_S      = @LN_S@
35 DIVINCL   = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include
36 ALLCFLAGS = $(CFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL) $(X_CFLAGS)
37 LDCOMBINE = ld -r
38 LDSHARED  = @LDSHARED@
39 AR        = ar rc
40 RM        = rm -f
41 MV        = mv
42 MKDIR     = mkdir -p
43 C2MAN     = @C2MAN@
44 LDCONFIG  = @LDCONFIG@
45 MANSPECS  = -w $(TOPSRCDIR)/relay32/gdi32.spec \
46             -w $(TOPSRCDIR)/relay32/user32.spec \
47             -w $(TOPSRCDIR)/relay32/comctl32.spec \
48             -w $(TOPSRCDIR)/relay32/comdlg32.spec \
49             -w $(TOPSRCDIR)/relay32/kernel32.spec 
50 LINT      = @LINT@
51 LINTFLAGS = @LINTFLAGS@
52 ALLLINTFLAGS = $(LINTFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL)
53 WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
54 BUILD     = $(TOPOBJDIR)/tools/build@PROGEXT@
55 MAKEDEP   = $(TOPOBJDIR)/tools/makedep@PROGEXT@
56 WINERC    = $(TOPOBJDIR)/rc/winerc@PROGEXT@
57 WRC       = $(TOPOBJDIR)/tools/wrc/wrc@PROGEXT@
58 WRCFLAGS  = -c
59 WINESTUB  = $(TOPOBJDIR)/library/winestub.o
60 SUBMAKE   = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(CFLAGS)' 'OPTIONS=$(OPTIONS)'
61 @SET_MAKE@
62
63 # Installation infos
64
65 INSTALL         = @INSTALL@
66 INSTALL_PROGRAM = @INSTALL_PROGRAM@
67 INSTALL_DATA    = @INSTALL_DATA@
68 prefix          = @prefix@
69 exec_prefix     = @exec_prefix@
70 bindir          = @bindir@
71 libdir          = @libdir@
72 infodir         = @infodir@
73 mandir          = @mandir@
74 prog_manext     = 1
75 conf_manext     = 5
76 includedir      = @includedir@/wine
77
78 OBJS = $(C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) $(ASM_SRCS:.S=.o) $(RC_SRCS:.rc=.o) \
79        $(SPEC_SRCS:.spec=.spec.o) $(GLUE:.c=.glue.o) $(EXTRA_OBJS)
80
81 LINTS = $(C_SRCS:.c=.ln)
82
83 # Implicit rules
84
85 .SUFFIXES:
86 .SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c $(SUFFIXES)
87
88 .c.o:
89         $(CC) -c $(ALLCFLAGS) -o $*.o $<
90
91 .spec.c.spec.o:
92         $(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
93
94 .s.o:
95         $(AS) -o $*.o $<  
96
97 .S.o:
98         $(CC) -c -o $*.o $<  
99
100 .rc.s:
101         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
102
103 .rc.h:
104         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
105
106 .rc.res:
107         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
108
109 .res.s:
110         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
111
112 .res.h:
113         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
114
115 .spec.spec.c:
116         $(BUILD) @BUILDFLAGS@ -o $@ -spec $<
117
118 .c.glue.c:
119         $(BUILD) @BUILDFLAGS@ -o $@ -glue $<
120
121 .c.ln:
122         $(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
123
124 # Rule to rebuild the resource compiler
125
126 $(WINERC) check_winerc:
127         cd $(TOPOBJDIR)/rc; $(SUBMAKE) winerc@PROGEXT@
128
129 $(WRC) check_wrc:
130         cd $(TOPOBJDIR)/tools/wrc; $(SUBMAKE) wrc@PROGEXT@
131
132 # Rule to rebuild the 'makedep' program
133
134 $(MAKEDEP) check_makedep:
135         cd $(TOPOBJDIR)/tools; $(SUBMAKE) makedep@PROGEXT@
136
137 # Rule to rebuild the 'build' program
138
139 $(BUILD) checkbuild:
140         cd $(TOPOBJDIR)/tools; $(SUBMAKE) build@PROGEXT@
141
142 # Rule for main module
143
144 $(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
145         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
146
147 # Rules for makefile
148
149 Makefile: Makefile.in $(TOPSRCDIR)/configure
150         @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
151         @exit 1
152
153 all: Makefile
154
155 # Rules for auto documentation
156
157 man: $(C_SRCS)
158         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
159
160 html: $(C_SRCS)
161         for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
162
163 # Rule for linting
164
165 $(MODULE).ln : $(LINTS)
166         if test "$(LINTS)" ; \
167         then \
168                 $(LINT) $(ALLLINTFLAGS) -o$(MODULE) $(LINTS) ; \
169                 $(MV) llib-l$(MODULE).ln $(MODULE).ln ; \
170         else \
171                 $(LINT) $(ALLLINTFLAGS) -C$(MODULE) /dev/null ; \
172         fi
173
174 lint:: $(MODULE).ln
175
176 # Rules for Windows API checking
177
178 winapi_check::
179         $(WINAPI_CHECK) $(WINAPI_CHECK_FLAGS) $(WINAPI_CHECK_EXTRA_FLAGS) .
180
181 # Misc. rules
182
183 $(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
184
185 $(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
186
187 depend:: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
188         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
189
190 clean::
191         $(RM) *.o *.ln \#*\# *~ *% .#* *.bak *.orig *.rej *.flc y.tab.c y.tab.h lex.yy.c core $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(SPEC_SRCS:.spec=.spec.c) $(GLUE:.c=.glue.c) $(PROGRAMS)
192
193 dummy:
194
195 # End of global rules