build-make, cross-make: Delete file.
[platform/upstream/gcc.git] / gcc / ch / Makefile.in
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.
4
5 #This file is part of GNU CC.
6
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.
11
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.
16
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.  */
21
22 # The makefile built from this file lives in the language subdirectory.
23 # It's purpose is to provide support for:
24 #
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.
28 #
29 # The parent makefile handles all other chores, with help from the
30 # language makefile fragment, of course.
31 #
32 # The targets for external use are:
33 # all, TAGS, ???mostlyclean, ???clean.
34
35 # Suppress smart makes who think they know how to automake Yacc files
36 .y.c:
37
38
39 # Variables that exist for you to override.
40 # See below for how to change them for certain systems.
41
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 =
53
54 X_CPPFLAGS =
55 T_CPPFLAGS =
56
57 CC = @CC@
58 AR = ar
59 AR_FLAGS = rc
60 SHELL = /bin/sh
61 MAKEINFO = makeinfo
62 TEXI2DVI = texi2dvi
63
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 =
68
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)
73
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.
77
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 = .
83
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`
89
90 # Directory where sources are, from where we are.
91 srcdir = @srcdir@
92 VPATH = @srcdir@
93
94 # Directory where texinfo.tex lives
95 # texidir = $(srcdir)/../../texinfo
96
97 # Top build directory, relative to here.
98 top_builddir = ..
99
100 # Internationalization library.
101 INTLLIBS = @INTLLIBS@
102
103 # Additional system libraries to link with.
104 CLIB=
105
106 # End of variables for you to override.
107
108 # Definition of `all' is here so that new rules inserted by sed
109 # do not specify the default target.
110 all: all.indirect
111
112 # This tells GNU Make version 3 not to put all variables in the environment.
113 .NOEXPORT:
114
115 # sed inserts variable overrides after the following line.
116 ####target overrides
117 @target_overrides@
118
119 ####host overrides
120 @host_overrides@
121 #\f
122 # Now figure out from those variables how to compile and link.
123
124 all.indirect: Makefile ../chill ../cc1chill$(exeext)
125
126 # IN_GCC distinguishes between code compiled into GCC itself and other
127 # programs built during a bootstrap.
128 # autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
129 INTERNAL_CFLAGS = -DIN_GCC @CROSS@
130
131 # This is the variable actually used when we compile.
132 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
133
134 # Likewise.
135 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
136
137 # This is where we get libiberty.a from.
138 LIBIBERTY = ../../libiberty/libiberty.a
139
140 # How to link with both our special library facilities
141 # and the system's installed libraries.
142 LIBS = $(LIBIBERTY) $(CLIB) $(INTLLIBS)
143 LIBDEPS = $(INTLLIBS) $(LIBIBERTY)
144
145 # Specify the directories to be searched for header files.
146 # Both . and srcdir are used, in that order,
147 # so that tm.h and config.h will be found in the compilation
148 # subdirectory rather than in the source directory.
149 INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config -I$(srcdir)/../../include
150
151 # Flags to pass to recursive makes.
152 # ??? $(CC) may need some work to handle stage[123].
153 # ??? The choices here will need some experimenting with.
154 FLAGS_TO_PASS = \
155         "AR_FLAGS=$(AR_FLAGS)" \
156         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
157         "BISON=$(BISON)" \
158         "BISONFLAGS=$(BISONFLAGS)" \
159         "CC=$(CC)" \
160         "CFLAGS=$(CFLAGS)" \
161         "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
162         "LDFLAGS=$(LDFLAGS)" \
163         "LEX=$(LEX)" \
164         "LEXFLAGS=$(LEXFLAGS)" \
165         "MAKEINFO=$(MAKEINFO)" \
166         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
167         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
168         "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
169         "SHELL=$(SHELL)" \
170         "exec_prefix=$(exec_prefix)" \
171         "prefix=$(prefix)" \
172         "tooldir=$(tooldir)" \
173         "bindir=$(bindir)" \
174         "libsubdir=$(libsubdir)"
175
176 # Always use -I$(srcdir)/config when compiling.
177 .c.o:
178         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
179
180 # This tells GNU make version 3 not to export all the variables
181 # defined in this file into the environment.
182 .NOEXPORT:
183 #\f
184 # Lists of files for various purposes.
185
186 # Language-specific object files for CHILL
187
188 CHILL_OBJS = parse.o actions.o except.o grant.o lang.o \
189    tree.o lex.o decl.o typeck.o convert.o expr.o loop.o \
190    tasking.o timing.o inout.o satisfy.o ch-version.o \
191    ../ggc-callbacks.o
192
193 BACKEND = ../toplev.o ../libbackend.a
194
195 ../cc1chill$(exeext): $(P) $(CHILL_OBJS) $(BACKEND) $(LIBDEPS)
196         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(CHILL_OBJS) \
197               $(BACKEND) $(LIBS)
198
199 # This executable is used in the CHILL regression 
200 # test script
201 utils/printf : $(srcdir)/utils/printf.c
202         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $<
203
204 #
205 # This is the top-level trigger for a CHILL regression test.
206 # It also builds those tools needed for CHILL regression testing.
207 #
208 check: ../cc1chill$(exeext) utils/printf
209         cd ..; $(MAKE) $(FLAGS_TO_PASS) xgcc gcov cpp cc1 ld
210         $(srcdir)/regression.sh -d -p
211
212 clean-tests:
213         cd testsuite/execute;  $(MAKE) clean
214         cd testsuite/execute/oe;  $(MAKE) clean
215         cd testsuite/compile/elektra;  $(MAKE) clean
216         cd testsuite/compile/votrics;  $(MAKE) clean
217         cd testsuite/compile;  $(MAKE) clean
218         cd testsuite/noncompile;  $(MAKE) clean
219         cd testsuite/examples;  $(MAKE) clean
220
221 mostlyclean:
222         test -d testsuite && $(MAKE) clean-tests
223         rm -f *.o
224
225 clean:  mostlyclean
226
227 #\f
228 Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
229         cd ..; $(SHELL) config.status
230
231 native: config.status ../cc1chill$(exeext) ../chill
232 #\f
233 # Compiling object files from source files.
234
235 # Note that dependencies on obstack.h are not written
236 # because that file is not part of GCC.
237
238 # CHILL language specific files.
239
240 EXPR_H = $(srcdir)/../expr.h ../insn-codes.h
241 RTL_H = $(srcdir)/../rtl.h $(srcdir)/../rtl.def \
242         $(srcdir)/../machmode.h $(srcdir)/../machmode.def
243 TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \
244         $(srcdir)/../machmode.h $(srcdir)/../machmode.def
245 CHILL_TREE_H = $(TREE_H) ch-tree.h ch-tree.def
246
247 # hash.h really depends on $(srcdir)/gperf.
248 # But this would screw things for people that don't have gperf,
249 # if gperf got touched, say.
250 # Thus you have to remove hash.h to force it to be re-made.
251 # Note: CHILL requires two sets of keywords, one all uppercase and
252 # one all lowercase.  The hash table ends up with both sets in it.
253 $(srcdir)/hash.h:
254         sed -e '1,/^%%/d' < $(srcdir)/gperf | \
255           sed '/^[^a-zA-Z]/d' | tr "[a-z]" "[A-Z]" > gperf.tmp2
256         cat $(srcdir)/gperf gperf.tmp2 > gperf.tmp
257         gperf -L C -F ', 0, 0, 0' -D -E -S1 -p -j1 -i 1 -g -o -t -k'*' \
258           gperf.tmp > $(srcdir)/hash.h || ( \
259         echo "Please update your 'gperf' from ftp://ftp.gnu.org/pub/gnu/gperf/" >&2 ; \
260         exit 1 )
261         $(RM) gperf.tmp gperf.tmp2
262
263 actions.o : actions.c $(CONFIG_H) $(CHILL_TREE_H) actions.h $(RTL_H)    \
264         lex.h $(srcdir)/../flags.h $(srcdir)/../input.h                 \
265         $(EXPR_H) $(srcdir)/../system.h $(srcdir)/../toplev.h diagnostic.h
266 convert.o : convert.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
267         $(srcdir)/../tree.h $(srcdir)/../system.h $(srcdir)/../toplev.h \
268         $(srcdir)/../convert.h
269 decl.o : decl.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h lex.h \
270         $(srcdir)/../system.h $(srcdir)/../toplev.h diagnostic.h
271 except.o : except.c $(CONFIG_H) $(srcdir)/../tree.h $(RTL_H) $(CHILL_TREE_H) \
272         $(srcdir)/../system.h $(srcdir)/../toplev.h
273 expr.o : expr.c $(CONFIG_H) $(RTL_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
274         $(EXPR_H) $(srcdir)/../tree.h lex.h $(srcdir)/../system.h \
275         $(srcdir)/../toplev.h
276 grant.o: grant.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
277         $(srcdir)/../input.h lex.h actions.h $(srcdir)/../system.h \
278         $(srcdir)/../toplev.h $(srcdir)/../output.h
279 inout.o : inout.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \
280         $(srcdir)/../input.h $(srcdir)/../system.h $(srcdir)/../toplev.h
281 lang.o : lang.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../input.h lex.h \
282         $(srcdir)/../system.h $(srcdir)/../toplev.h $(EXPR_H) $(RTL_H) \
283         $(srcdir)/../diagnostic.h
284 lex.o : lex.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
285         $(srcdir)/../input.h $(srcdir)/parse.h $(srcdir)/../system.h    \
286         $(srcdir)/../toplev.h lex.h hash.h
287 loop.o : loop.c $(CONFIG_H) $(RTL_H) $(CHILL_TREE_H) lex.h \
288         $(srcdir)/../flags.h $(srcdir)/../input.h \
289         $(srcdir)/../tree.h $(srcdir)/../system.h $(srcdir)/../toplev.h
290 parse.o : parse.c $(CONFIG_H) $(CHILL_TREE_H) parse.h \
291         lex.h actions.h tasking.h $(srcdir)/../system.h $(srcdir)/../toplev.h
292 satisfy.o : satisfy.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../tree.h \
293         $(srcdir)/../flags.h lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
294 timing.o : timing.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) $(srcdir)/../flags.h \
295         $(srcdir)/../input.h lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
296
297 tasking.o : tasking.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) \
298         $(srcdir)/../flags.h $(srcdir)/../input.h \
299         lex.h $(srcdir)/../system.h $(srcdir)/../toplev.h
300 tree.o : tree.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../system.h \
301         $(srcdir)/../toplev.h
302 typeck.o : typeck.c $(CONFIG_H) $(CHILL_TREE_H) ../insn-codes.h \
303         $(srcdir)/../expr.h ../insn-codes.h $(srcdir)/../flags.h lex.h \
304         $(srcdir)/../system.h $(srcdir)/../toplev.h $(srcdir)/../output.h
305 ch-version.o : ch-version.c
306 ch-version.c : Makefile
307         echo 'const char * const gnuchill_version = "$(GNUCHILL_VERSION)";' > $@
308
309 ## This is ugly, but I don't want GNU make to put these variables in
310 ## the environment.  Older makes will see this as a set of targets
311 ## with no dependencies and no actions.
312 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
313
314 #\f
315 # These exist for maintenance purposes.
316
317 # Update the tags table.
318 TAGS: force
319         cd $(srcdir);                                                   \
320         etags *.y *.h *.c *.l ../*.h ../*.c;                            \
321
322 .PHONY: TAGS
323
324 force: