* splay-tree.h (splay_tree_max): New function.
[official-gcc.git] / gcc / ch / Makefile.in
bloba15c1ce7506f10361ae153109b3f043196828036
1 # Makefile for GNU CHILL compiler.
2 # Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1998,
3 # 1999, 2000, 2001 Free Software Foundation, Inc.
5 #This file is part of GNU CC.
7 #GNU CC is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
10 #any later version.
12 #GNU CC is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 #GNU General Public License for more details.
17 #You should have received a copy of the GNU General Public License
18 #along with GNU CC; see the file COPYING. If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330,
20 #Boston, MA 02111-1307, USA. */
22 # The makefile built from this file lives in the language subdirectory.
23 # It's purpose is to provide support for:
25 # 1) recursion where necessary, and only then (building .o's), and
26 # 2) building and debugging cc1 from the language subdirectory, and
27 # 3) nothing else.
29 # The parent makefile handles all other chores, with help from the
30 # language makefile fragment, of course.
32 # The targets for external use are:
33 # all, TAGS, ???mostlyclean, ???clean.
35 # Suppress smart makes who think they know how to automake Yacc files
36 .y.c:
39 # Variables that exist for you to override.
40 # See below for how to change them for certain systems.
42 # Various ways of specifying flags for compilations:
43 # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
44 # BOOT_CFLAGS is the value of CFLAGS to pass
45 # to the stage2 and stage3 compilations
46 # XCFLAGS is used for most compilations but not when using the GCC just built.
47 XCFLAGS =
48 CFLAGS = -g
49 BOOT_CFLAGS = -O $(CFLAGS)
50 # These exists to be overridden by the x-* and t-* files, respectively.
51 X_CFLAGS =
52 T_CFLAGS =
54 X_CPPFLAGS =
55 T_CPPFLAGS =
57 CC = @CC@
58 AR = ar
59 AR_FLAGS = rc
60 SHELL = /bin/sh
61 MAKEINFO = makeinfo
62 TEXI2DVI = texi2dvi
64 # Define this as & to perform parallel make on a Sequent.
65 # Note that this has some bugs, and it seems currently necessary
66 # to compile all the gen* files first by hand to avoid erroneous results.
67 P =
69 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
70 # It omits XCFLAGS, and specifies -B./.
71 # It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
72 GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
74 # Tools to use when building a cross-compiler.
75 # These are used because `configure' appends `cross-make'
76 # to the makefile when making a cross-compiler.
78 # We don't use cross-make. Instead we use the tools
79 # from the build tree, if they are available.
80 # program_transform_name and objdir are set by configure.in.
81 program_transform_name =
82 objdir = .
84 target=@target@
85 xmake_file=@dep_host_xmake_file@
86 tmake_file=@dep_tmake_file@
87 #version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
88 #mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
90 # Directory where sources are, from where we are.
91 srcdir = @srcdir@
92 VPATH = @srcdir@
94 # Directory where texinfo.tex lives
95 # texidir = $(srcdir)/../../texinfo
97 # Top build directory, relative to here.
98 top_builddir = ..
100 # Internationalization library.
101 INTLLIBS = @INTLLIBS@
103 # Additional system libraries to link with.
104 CLIB=
106 # Choose the real default target.
107 ALL=all
109 # End of variables for you to override.
111 # Definition of `all' is here so that new rules inserted by sed
112 # do not specify the default target.
113 all: all.indirect
115 # This tells GNU Make version 3 not to put all variables in the environment.
116 .NOEXPORT:
118 # sed inserts variable overrides after the following line.
119 ####target overrides
120 @target_overrides@
121 ####host overrides
122 @host_overrides@
123 ####cross overrides
124 @cross_defines@
125 @cross_overrides@
126 ####build overrides
127 @build_overrides@
128 ####site overrides
129 # @site_overrides@
131 # Now figure out from those variables how to compile and link.
133 all.indirect: Makefile ../chill ../cc1chill$(exeext)
135 # IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
136 INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@
138 # This is the variable actually used when we compile.
139 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
141 # Likewise.
142 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
144 # This is where we get libiberty.a from.
145 LIBIBERTY = ../../libiberty/libiberty.a
147 # How to link with both our special library facilities
148 # and the system's installed libraries.
149 LIBS = $(LIBIBERTY) $(CLIB) $(INTLLIBS)
150 LIBDEPS = $(INTLLIBS) $(LIBIBERTY)
152 # Specify the directories to be searched for header files.
153 # Both . and srcdir are used, in that order,
154 # so that tm.h and config.h will be found in the compilation
155 # subdirectory rather than in the source directory.
156 INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config -I$(srcdir)/../../include
158 # Flags to pass to recursive makes.
159 # ??? $(CC) may need some work to handle stage[123].
160 # ??? The choices here will need some experimenting with.
161 FLAGS_TO_PASS = \
162 "AR_FLAGS=$(AR_FLAGS)" \
163 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
164 "BISON=$(BISON)" \
165 "BISONFLAGS=$(BISONFLAGS)" \
166 "CC=$(CC)" \
167 "CFLAGS=$(CFLAGS)" \
168 "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
169 "LDFLAGS=$(LDFLAGS)" \
170 "LEX=$(LEX)" \
171 "LEXFLAGS=$(LEXFLAGS)" \
172 "MAKEINFO=$(MAKEINFO)" \
173 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
174 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
175 "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
176 "SHELL=$(SHELL)" \
177 "exec_prefix=$(exec_prefix)" \
178 "prefix=$(prefix)" \
179 "tooldir=$(tooldir)" \
180 "bindir=$(bindir)" \
181 "libsubdir=$(libsubdir)"
183 # Always use -I$(srcdir)/config when compiling.
184 .c.o:
185 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
187 # This tells GNU make version 3 not to export all the variables
188 # defined in this file into the environment.
189 .NOEXPORT:
191 # Lists of files for various purposes.
193 # Language-specific object files for CHILL
195 CHILL_OBJS = parse.o actions.o except.o grant.o lang.o \
196 tree.o lex.o decl.o typeck.o convert.o expr.o loop.o \
197 tasking.o timing.o inout.o satisfy.o ch-version.o \
198 ../ggc-callbacks.o
200 BACKEND = ../toplev.o ../libbackend.a
202 ../cc1chill$(exeext): $(P) $(CHILL_OBJS) $(BACKEND) $(LIBDEPS)
203 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(CHILL_OBJS) \
204 $(BACKEND) $(LIBS)
206 # This executable is used in the CHILL regression
207 # test script
208 utils/printf : $(srcdir)/utils/printf.c
209 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $<
212 # This is the top-level trigger for a CHILL regression test.
213 # It also builds those tools needed for CHILL regression testing.
215 check: ../cc1chill$(exeext) utils/printf
216 cd ..; $(MAKE) $(FLAGS_TO_PASS) xgcc gcov cpp cc1 ld
217 $(srcdir)/regression.sh -d -p
219 clean-tests:
220 cd testsuite/execute; $(MAKE) clean
221 cd testsuite/execute/oe; $(MAKE) clean
222 cd testsuite/compile/elektra; $(MAKE) clean
223 cd testsuite/compile/votrics; $(MAKE) clean
224 cd testsuite/compile; $(MAKE) clean
225 cd testsuite/noncompile; $(MAKE) clean
226 cd testsuite/examples; $(MAKE) clean
228 mostlyclean:
229 test -d testsuite && $(MAKE) clean-tests
230 rm -f *.o
232 clean: mostlyclean
235 Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
236 cd ..; $(SHELL) config.status
238 native: config.status ../cc1chill$(exeext) ../chill
240 # Compiling object files from source files.
242 # Note that dependencies on obstack.h are not written
243 # because that file is not part of GCC.
245 # CHILL language specific files.
247 EXPR_H = $(srcdir)/../expr.h ../insn-codes.h
248 RTL_H = $(srcdir)/../rtl.h $(srcdir)/../rtl.def \
249 $(srcdir)/../machmode.h $(srcdir)/../machmode.def
250 TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \
251 $(srcdir)/../machmode.h $(srcdir)/../machmode.def
252 CHILL_TREE_H = $(TREE_H) ch-tree.h ch-tree.def
254 # hash.h really depends on $(srcdir)/gperf.
255 # But this would screw things for people that don't have gperf,
256 # if gperf got touched, say.
257 # Thus you have to remove hash.h to force it to be re-made.
258 # Note: CHILL requires two sets of keywords, one all uppercase and
259 # one all lowercase. The hash table ends up with both sets in it.
260 $(srcdir)/hash.h:
261 sed -e '1,/^%%/d' < $(srcdir)/gperf | \
262 sed '/^[^a-zA-Z]/d' | tr "[a-z]" "[A-Z]" > gperf.tmp2
263 cat $(srcdir)/gperf gperf.tmp2 > gperf.tmp
264 gperf -L C -F ', 0, 0, 0' -D -E -S1 -p -j1 -i 1 -g -o -t -k'*' \
265 gperf.tmp > $(srcdir)/hash.h || ( \
266 echo "Please update your 'gperf' from ftp://ftp.gnu.org/pub/gnu/gperf/" >&2 ; \
267 exit 1 )
268 $(RM) gperf.tmp gperf.tmp2
270 actions.o : actions.c $(CONFIG_H) $(CHILL_TREE_H) actions.h $(RTL_H) \
271 lex.h $(srcdir)/../flags.h $(srcdir)/../input.h \
272 $(EXPR_H) $(srcdir)/../system.h $(srcdir)/../toplev.h
273 convert.o : convert.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
274 $(srcdir)/../tree.h $(srcdir)/../system.h $(srcdir)/../toplev.h \
275 $(srcdir)/../convert.h
276 decl.o : decl.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h lex.h \
277 $(srcdir)/../system.h $(srcdir)/../toplev.h
278 except.o : except.c $(CONFIG_H) $(srcdir)/../tree.h $(RTL_H) $(CHILL_TREE_H) \
279 $(srcdir)/../system.h $(srcdir)/../toplev.h
280 expr.o : expr.c $(CONFIG_H) $(RTL_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
281 $(EXPR_H) $(srcdir)/../tree.h lex.h $(srcdir)/../system.h \
282 $(srcdir)/../toplev.h
283 grant.o: grant.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
284 $(srcdir)/../input.h lex.h actions.h $(srcdir)/../system.h \
285 $(srcdir)/../toplev.h $(srcdir)/../output.h
286 inout.o : inout.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
287 $(srcdir)/../input.h $(srcdir)/../system.h $(srcdir)/../toplev.h
288 lang.o : lang.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../input.h lex.h \
289 $(srcdir)/../system.h $(srcdir)/../toplev.h $(EXPR_H) $(RTL_H)
290 lex.o : lex.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
291 $(srcdir)/../input.h $(srcdir)/parse.h $(srcdir)/../system.h \
292 $(srcdir)/../toplev.h lex.h $(srcdir)/../dwarfout.h hash.h
293 loop.o : loop.c $(CONFIG_H) $(RTL_H) $(CHILL_TREE_H) lex.h \
294 $(srcdir)/../flags.h $(srcdir)/../input.h \
295 $(srcdir)/../tree.h $(srcdir)/../system.h $(srcdir)/../toplev.h
296 parse.o : parse.c $(CONFIG_H) $(CHILL_TREE_H) parse.h \
297 lex.h actions.h tasking.h $(srcdir)/../system.h $(srcdir)/../toplev.h
298 satisfy.o : satisfy.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../tree.h \
299 $(srcdir)/../flags.h lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
300 timing.o : timing.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
301 $(srcdir)/../input.h lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
303 tasking.o : tasking.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) \
304 $(srcdir)/../flags.h $(srcdir)/../input.h \
305 lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
306 tree.o : tree.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../system.h \
307 $(srcdir)/../toplev.h
308 typeck.o : typeck.c $(CONFIG_H) $(CHILL_TREE_H) ../insn-codes.h \
309 $(srcdir)/../expr.h ../insn-codes.h $(srcdir)/../flags.h lex.h \
310 $(srcdir)/../system.h $(srcdir)/../toplev.h $(srcdir)/../output.h
311 ch-version.o : ch-version.c
312 ch-version.c : Makefile
313 echo 'const char * const gnuchill_version = "$(GNUCHILL_VERSION)";' > $@
315 ## This is ugly, but I don't want GNU make to put these variables in
316 ## the environment. Older makes will see this as a set of targets
317 ## with no dependencies and no actions.
318 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
321 # These exist for maintenance purposes.
323 # Update the tags table.
324 TAGS: force
325 cd $(srcdir); \
326 etags *.y *.h *.c *.l ../*.h ../*.c; \
328 .PHONY: TAGS
330 force: