OSDN Git Service

eb90a9fd09f2d75fcfe06f30a39727341dd38710
[pf3gnuchains/gcc-fork.git] / gnattools / Makefile.in
1 # Makefile for gnattools
2 #   Copyright 2003, 2004 Free Software Foundation, Inc.
3 #
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 # Default target; must be first.
19 all: gnattools
20
21 # Standard autoconf-set variables.
22 SHELL = @SHELL@
23 srcdir = @srcdir@
24 build = @build@
25 target = @target@
26 prefix = @prefix@
27 INSTALL = @INSTALL@
28 INSTALL_DATA = @INSTALL_DATA@
29 INSTALL_PROGRAM = @INSTALL_PROGRAM@
30
31 # Nonstandard autoconf-set variables.
32 LN_S=@LN_S@
33 target_noncanonical=@target_noncanonical@
34
35 # Variables for the user (or the top level) to override.
36 objext=.o
37 TRACE=no
38 ADA_FOR_BUILD=
39 ADA_FOR_TARGET=
40 LDFLAGS=
41 PWD_COMMAND = $${PWDCMD-pwd}
42
43 # The tedious process of getting CFLAGS right.
44 CFLAGS=-g
45 LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
46 GCC_WARN_CFLAGS = $(LOOSE_WARN) $(NOCOMMON_FLAG)
47
48 ADA_CFLAGS=
49 T_ADA_CFLAGS=
50 # HPPA is literally the only target which sets X_ADA_CFLAGS
51 X_ADA_CFLAGS=@x_ada_cflags@
52 ALL_ADA_CFLAGS=$(X_ADA_CFLAGS) $(T_ADA_CFLAGS) $(ADA_CFLAGS)
53
54 # Variables for gnattools.
55 ADAFLAGS= -gnatpg -gnata
56 ADA_INCLUDE_DIR = $(libsubdir)/adainclude
57 ADA_RTL_OBJ_DIR = $(libsubdir)/adalib
58
59 # For finding the GCC build dir, which is used far too much
60 GCC_DIR=../gcc
61 # Include fragment generated by GCC configure; shared with libada for now.
62 include $(GCC_DIR)/libada-mk
63 # Variables based on those gleaned from the GCC makefile.  :-P
64 libsubdir=$(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
65
66 # Get possible host-specific override for libsubdir (ick).
67 xmake_file=$(subst /config,/../gcc/config,$(gcc_xmake_file))
68 ifneq ($(xmake_file),)
69 include $(xmake_file)
70 endif
71
72 # Absolute srcdir for gcc/ada (why do we want absolute?  I dunno)
73 fsrcdir := $(shell cd $(srcdir)/../gcc/ada/; ${PWD_COMMAND})
74
75 # Useful "subroutines" for the excess includes
76 INCLUDES_FOR_SUBDIR = -I. -I.. -I../.. -I$(fsrcdir) -I$(fsrcdir)/../config \
77         -I$(fsrcdir)/../../include -I$(fsrcdir)/..
78 ADA_INCLUDES_FOR_SUBDIR = -I. -I$(fsrcdir)
79
80 # Variables for gnattools1, native
81 TOOLS_FLAGS_TO_PASS_1= \
82         "CC=../../xgcc -B../../" \
83         "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
84         "LDFLAGS=$(LDFLAGS)" \
85         "ADAFLAGS=$(ADAFLAGS)" \
86         "INCLUDES=$(INCLUDES_FOR_SUBDIR)" \
87         "ADA_INCLUDES=-I- -I../rts $(ADA_INCLUDES_FOR_SUBDIR)"\
88         "exeext=$(exeext)" \
89         "fsrcdir=$(fsrcdir)" \
90         "srcdir=$(fsrcdir)" \
91         "GNATBIND=../../gnatbind" \
92         "TOOLSCASE=native"
93
94 # Variables for regnattools
95 TOOLS_FLAGS_TO_PASS_1re= \
96         "CC=../../xgcc -B../../" \
97         "CFLAGS=$(CFLAGS)" \
98         "ADAFLAGS=$(ADAFLAGS)" \
99         "INCLUDES=$(INCLUDES_FOR_SUBDIR)" \
100         "ADA_INCLUDES=-I../rts $(ADA_INCLUDES_FOR_SUBDIR)"\
101         "exeext=$(exeext)" \
102         "fsrcdir=$(fsrcdir)" \
103         "srcdir=$(fsrcdir)" \
104         "GNATMAKE=../../gnatmake" \
105         "GNATLINK=../../gnatlink" \
106         "GNATBIND=../../gnatbind" \
107         "TOOLSCASE=cross" \
108         "INCLUDES="
109
110 # Variables for gnattools2, native
111 TOOLS_FLAGS_TO_PASS_NATIVE= \
112         "CC=../../xgcc -B../../" \
113         "CFLAGS=$(CFLAGS)" \
114         "ADAFLAGS=$(ADAFLAGS)" \
115         "INCLUDES=$(INCLUDES_FOR_SUBDIR)" \
116         "ADA_INCLUDES=-I../rts $(ADA_INCLUDES_FOR_SUBDIR)" \
117         "exeext=$(exeext)" \
118         "fsrcdir=$(fsrcdir)" \
119         "srcdir=$(fsrcdir)" \
120         "GNATMAKE=../../gnatmake" \
121         "GNATLINK=../../gnatlink" \
122         "GNATBIND=../../gnatbind" \
123         "TOOLSCASE=native"
124
125 # Variables for gnattools, cross
126 TOOLS_FLAGS_TO_PASS_CROSS= \
127         "CC=$(CC)" \
128         "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
129         "LDFLAGS=$(LDFLAGS)" \
130         "ADAFLAGS=$(ADAFLAGS)"  \
131         "INCLUDES=$(INCLUDES_FOR_SUBDIR)" \
132         "ADA_INCLUDES=-I$(RTS_DIR)../adainclude -I$(RTS_DIR) $(ADA_INCLUDES_FOR_SUBDIR)" \
133         "exeext=$(exeext)" \
134         "fsrcdir=$(fsrcdir)" \
135         "srcdir=$(fsrcdir)" \
136         "GNATMAKE=gnatmake" \
137         "GNATLINK=gnatlink" \
138         "GNATBIND=gnatbind" \
139         "TOOLSCASE=cross" \
140         "LIBGNAT="
141
142 # File lists
143 # ----------
144
145 # File associations set by configure
146 EXTRA_GNATTOOLS = @EXTRA_GNATTOOLS@
147 TOOLS_TARGET_PAIRS = @TOOLS_TARGET_PAIRS@
148
149 # These are built by gnatmake, and in both native and cross configurations.
150 GNATTOOLS2_FILES = \
151         ../../gnatchop$(exeext) \
152         ../../gnat$(exeext) \
153         ../../gnatkr$(exeext) \
154         ../../gnatls$(exeext) \
155         ../../gnatprep$(exeext) \
156         ../../gnatxref$(exeext) \
157         ../../gnatfind$(exeext) \
158         ../../gnatname$(exeext) \
159         ../../gnatclean$(exeext)
160
161 # Makefile targets
162 # ----------------
163
164 .PHONY: gnattools gnattools-native gnattools-cross regnattools
165 gnattools: @default_gnattools_target@
166
167 # Sanity check
168 $(GCC_DIR)/stamp-gnatlib:
169         @if [ ! -f $(GCC_DIR)/stamp-gnatlib ] ; \
170         then \
171           echo "Cannot build gnattools while gnatlib is out of date or unbuilt" ; \
172           false; \
173         else \
174           true; \
175         fi
176
177
178 # Build directory for the tools. Let's copy the target-dependent
179 # sources using the same mechanism as for gnatlib. The other sources are
180 # accessed using the vpath directive in ada/Makefile.in
181
182 $(GCC_DIR)/stamp-tools:
183         -rm -rf $(GCC_DIR)/ada/tools
184         -mkdir -p $(GCC_DIR)/ada/tools
185         -(cd $(GCC_DIR)/ada/tools; $(LN_S) ../sdefault.adb .)
186         -$(foreach PAIR,$(TOOLS_TARGET_PAIRS), \
187                   rm -f $(GCC_DIR)/ada/tools/$(word 1,$(subst <, ,$(PAIR)));\
188                   $(LN_S) $(fsrcdir)/$(word 2,$(subst <, ,$(PAIR))) \
189                         $(GCC_DIR)/ada/tools/$(word 1,$(subst <, ,$(PAIR)));)
190         touch $(GCC_DIR)/stamp-tools
191
192 # gnatmake/link tools cannot always be built with gnatmake/link for bootstrap 
193 # reasons: gnatmake should be built with a recent compiler, a recent compiler
194 # may not generate ALI files compatible with an old gnatmake so it is important
195 # to be able to build gnatmake without a version of gnatmake around. Once 
196 # everything has been compiled once, gnatmake can be recompiled with itself 
197 # (see target regnattools) 
198 gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib
199         # gnattools1
200         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
201           $(TOOLS_FLAGS_TO_PASS_1) \
202           ../../gnatmake$(exeext) ../../gnatlink$(exeext)
203         # gnattools2
204         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
205           $(TOOLS_FLAGS_TO_PASS_NATIVE) \
206           $(GNATTOOLS2_FILES)
207
208 # gnatmake/link can be built with recent gnatmake/link if they are available.
209 # This is especially convenient for building cross tools or for rebuilding
210 # the tools when the original bootstrap has already be done.
211 regnattools: $(GCC_DIR)/stamp-gnatlib
212         # gnattools1-re
213         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
214           $(TOOLS_FLAGS_TO_PASS_1re) \
215           gnatmake-re gnatlink-re
216         # gnattools2
217         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
218           $(TOOLS_FLAGS_TO_PASS_NATIVE) \
219           $(GNATTOOLS2_FILES)
220
221 # For cross builds of gnattools,
222 # put the host RTS dir first in the PATH to hide the default runtime
223 # files that are among the sources
224 # FIXME: This should be done in configure.
225 RTS_DIR:=$(strip $(subst \,/,$(shell gnatls -v | grep adalib )))
226 gnattools-cross: $(GCC_DIR)/stamp-tools
227         # gnattools1-re
228         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
229           $(TOOLS_FLAGS_TO_PASS_CROSS) INCLUDES="" \
230           gnatmake-re gnatlink-re
231         # gnattools2
232         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
233           $(TOOLS_FLAGS_TO_PASS_CROSS) \
234           $(GNATTOOLS2_FILES)
235         # gnattools4 (cross only)
236         $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \
237           $(TOOLS_FLAGS_TO_PASS_CROSS) \
238           top_buildir=../../.. \
239            ../../vxaddr2line$(exeext)
240         # Rename cross tools to where the GCC makefile wants them when
241         # installing.  FIXME: installation should be done elsewhere.
242         if [ -f $(GCC_DIR)/gnatbind$(exeext) ] ; then \
243           mv $(GCC_DIR)/gnatbind$(exeext) $(GCC_DIR)/gnatbind-cross$(exeext); \
244         fi
245         if [ -f $(GCC_DIR)/gnatchop$(exeext) ] ; then \
246           mv $(GCC_DIR)/gnatchop$(exeext) $(GCC_DIR)/gnatchop-cross$(exeext); \
247         fi
248         if [ -f $(GCC_DIR)/gnat$(exeext) ] ; then \
249           mv $(GCC_DIR)/gnat$(exeext) $(GCC_DIR)/gnat-cross$(exeext); \
250         fi
251         if [ -f $(GCC_DIR)/gnatkr$(exeext) ] ; then \
252           mv $(GCC_DIR)/gnatkr$(exeext) $(GCC_DIR)/gnatkr-cross$(exeext); \
253         fi
254         if [ -f $(GCC_DIR)/gnatlink$(exeext) ] ; then \
255           mv $(GCC_DIR)/gnatlink$(exeext) $(GCC_DIR)/gnatlink-cross$(exeext); \
256         fi
257         if [ -f $(GCC_DIR)/gnatls$(exeext) ] ; then \
258           mv $(GCC_DIR)/gnatls$(exeext) $(GCC_DIR)/gnatls-cross$(exeext); \
259         fi
260         if [ -f $(GCC_DIR)/gnatmake$(exeext) ] ; then \
261           mv $(GCC_DIR)/gnatmake$(exeext) $(GCC_DIR)/gnatmake-cross$(exeext); \
262         fi
263         if [ -f $(GCC_DIR)/gnatmem$(exeext) ] ; then \
264           mv $(GCC_DIR)/gnatmem$(exeext) $(GCC_DIR)/gnatmem-cross$(exeext); \
265         fi
266         if [ -f $(GCC_DIR)/gnatname$(exeext) ] ; then \
267           mv $(GCC_DIR)/gnatname$(exeext) $(GCC_DIR)/gnatname-cross$(exeext); \
268         fi
269         if [ -f $(GCC_DIR)/gnatprep$(exeext) ] ; then \
270           mv $(GCC_DIR)/gnatprep$(exeext) $(GCC_DIR)/gnatprep-cross$(exeext); \
271         fi
272         if [ -f $(GCC_DIR)/gnatxref$(exeext) ] ; then \
273           mv $(GCC_DIR)/gnatxref$(exeext) $(GCC_DIR)/gnatxref-cross$(exeext); \
274         fi
275         if [ -f $(GCC_DIR)/gnatfind$(exeext) ] ; then \
276           mv $(GCC_DIR)/gnatfind$(exeext) $(GCC_DIR)/gnatfind-cross$(exeext); \
277         fi
278         if [ -f $(GCC_DIR)/gnatclean$(exeext) ] ; then \
279           mv $(GCC_DIR)/gnatclean$(exeext) $(GCC_DIR)/gnatclean-cross$(exeext); \
280         fi
281         if [ -f $(GCC_DIR)/gnatsym$(exeext) ] ; then \
282           mv $(GCC_DIR)/gnatsym$(exeext) $(GCC_DIR)/gnatsym-cross$(exeext); \
283         fi
284
285 # Other
286 # -----
287
288 # Check uninstalled version.
289 check:
290
291 # Check installed version.
292 installcheck:
293
294 # Build info (none here).
295 info:
296
297 # Build DVI (none here).
298 dvi:
299
300 # Build PDF (none here).
301 pdf:
302
303 # Build HTML (none here).
304 html:
305
306 # Build TAGS (none here).
307 TAGS:
308
309 # Installation rules.
310 install:
311
312 install-info:
313
314 install-pdf:
315
316 install-html:
317
318 # Cleaning rules.
319 mostlyclean:
320
321 clean:
322
323 distclean:
324         $(RM) Makefile config.status config.log
325
326 maintainer-clean:
327
328 # Rules for rebuilding this Makefile.
329 Makefile: $(srcdir)/Makefile.in config.status
330         CONFIG_FILES=$@ ; \
331         CONFIG_HEADERS= ; \
332         $(SHELL) ./config.status
333
334 config.status: $(srcdir)/configure
335         $(SHELL) ./config.status --recheck
336
337 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac
338         cd $(srcdir) && autoconf
339
340 # Don't export variables to the environment, in order to not confuse
341 # configure.
342 .NOEXPORT:
343