2012-04-05 Andrew Stubbs <ams@codesourcery.com>
[official-gcc.git] / libada / Makefile.in
blob36cf5ad5e5ab10057fd7499129a12b4308f90f77
1 # Makefile for libada.
2 # Copyright 2003, 2004, 2009, 2010, 2011 Free Software Foundation, Inc.
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 3 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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; see the file COPYING3. If not see
16 # <http://www.gnu.org/licenses/>.
18 # Default target; must be first.
19 all: gnatlib
20 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
22 .PHONY: all
24 ## Multilib support variables.
25 MULTISRCTOP =
26 MULTIBUILDTOP =
27 MULTIDIRS =
28 MULTISUBDIR =
29 MULTIDO = true
30 MULTICLEAN = true
32 # Standard autoconf-set variables.
33 SHELL = @SHELL@
34 srcdir = @srcdir@
35 libdir = @libdir@
36 bindir = @bindir@
37 build = @build@
38 target = @target@
39 prefix = @prefix@
41 # Nonstandard autoconf-set variables.
42 enable_shared = @enable_shared@
44 LN_S=@LN_S@
45 AWK=@AWK@
47 # Variables for the user (or the top level) to override.
48 objext=.o
49 THREAD_KIND=native
50 TRACE=no
51 LDFLAGS=
53 # The tedious process of getting CFLAGS right.
54 CFLAGS=-g
55 PICFLAG = @PICFLAG@
56 GNATLIBFLAGS= -W -Wall -gnatpg -nostdinc
57 GNATLIBCFLAGS= -g -O2
58 GNATLIBCFLAGS_FOR_C = -W -Wall $(GNATLIBCFLAGS) $(PICFLAG) \
59 -fexceptions -DIN_RTS @have_getipinfo@
61 host_subdir = @host_subdir@
62 GCC_DIR=$(MULTIBUILDTOP)../../$(host_subdir)/gcc
64 target_noncanonical:=@target_noncanonical@
65 version := $(shell cat $(srcdir)/../gcc/BASE-VER)
66 libsubdir := $(libdir)/gcc/$(target_noncanonical)/$(version)$(MULTISUBDIR)
67 ADA_RTS_DIR=$(GCC_DIR)/ada/rts$(subst /,_,$(MULTISUBDIR))
68 ADA_RTS_SUBDIR=./rts$(subst /,_,$(MULTISUBDIR))
70 # exeext should not be used because it's the *host* exeext. We're building
71 # a *target* library, aren't we?!? Likewise for CC. Still, provide bogus
72 # definitions just in case something slips through the safety net provided
73 # by recursive make invocations in gcc/ada/Makefile.in
74 LIBADA_FLAGS_TO_PASS = \
75 "MAKEOVERRIDES=" \
76 "LDFLAGS=$(LDFLAGS)" \
77 "LN_S=$(LN_S)" \
78 "SHELL=$(SHELL)" \
79 "GNATLIBFLAGS=$(GNATLIBFLAGS) $(MULTIFLAGS)" \
80 "GNATLIBCFLAGS=$(GNATLIBCFLAGS) $(MULTIFLAGS)" \
81 "GNATLIBCFLAGS_FOR_C=$(GNATLIBCFLAGS_FOR_C) $(MULTIFLAGS)" \
82 "PICFLAG_FOR_TARGET=$(PICFLAG)" \
83 "THREAD_KIND=$(THREAD_KIND)" \
84 "TRACE=$(TRACE)" \
85 "MULTISUBDIR=$(MULTISUBDIR)" \
86 "libsubdir=$(libsubdir)" \
87 "bindir=$(bindir)" \
88 "objext=$(objext)" \
89 "prefix=$(prefix)" \
90 "exeext=.exeext.should.not.be.used " \
91 'CC=the.host.compiler.should.not.be.needed' \
92 "GCC_FOR_TARGET=$(CC)" \
93 "CFLAGS=$(CFLAGS)"
95 # Rules to build gnatlib.
96 .PHONY: gnatlib gnatlib-plain gnatlib-sjlj gnatlib-zcx gnatlib-shared osconstool
97 gnatlib: @default_gnatlib_target@
99 gnatlib-plain: osconstool $(GCC_DIR)/ada/Makefile
100 test -f stamp-libada || \
101 $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) gnatlib \
102 && touch stamp-libada
103 -rm -rf adainclude
104 -rm -rf adalib
105 $(LN_S) $(ADA_RTS_DIR) adainclude
106 $(LN_S) $(ADA_RTS_DIR) adalib
108 gnatlib-sjlj gnatlib-zcx gnatlib-shared: osconstool $(GCC_DIR)/ada/Makefile
109 test -f stamp-libada || \
110 $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) $@ \
111 && touch stamp-libada
112 -rm -rf adainclude
113 -rm -rf adalib
114 $(LN_S) $(ADA_RTS_DIR) adainclude
115 $(LN_S) $(ADA_RTS_DIR) adalib
117 osconstool:
118 $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) ./bldtools/oscons/xoscons
120 install-gnatlib: $(GCC_DIR)/ada/Makefile
121 $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) install-gnatlib
123 # Check uninstalled version.
124 check:
126 # Check installed version.
127 installcheck:
129 # Build info (none here).
130 info:
132 # Build DVI (none here).
133 dvi:
135 # Build PDF (none here).
136 pdf:
138 # Build html (none here).
139 html:
141 # Build TAGS (none here).
142 TAGS:
144 .PHONY: check installcheck info dvi pdf html
146 # Installation rules.
147 install: install-gnatlib
148 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
150 install-strip: install
152 install-info:
154 install-pdf:
156 install-html:
158 .PHONY: install install-strip install-info install-pdf install-html
160 # Cleaning rules.
161 mostlyclean:
162 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
164 clean:
165 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
167 distclean:
168 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
169 $(RM) Makefile config.status config.log
171 maintainer-clean:
173 .PHONY: mostlyclean clean distclean maintainer-clean
175 # Rules for rebuilding this Makefile.
176 Makefile: $(srcdir)/Makefile.in config.status
177 CONFIG_FILES=$@ ; \
178 CONFIG_HEADERS= ; \
179 $(SHELL) ./config.status
181 config.status: $(srcdir)/configure
182 $(SHELL) ./config.status --recheck
184 AUTOCONF = autoconf
185 configure_deps = \
186 $(srcdir)/configure.ac \
187 $(srcdir)/../config/acx.m4 \
188 $(srcdir)/../config/override.m4 \
189 $(srcdir)/../config/multi.m4
191 $(srcdir)/configure: @MAINT@ $(configure_deps)
192 cd $(srcdir) && $(AUTOCONF)
194 # Don't export variables to the environment, in order to not confuse
195 # configure.
196 .NOEXPORT: