OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / libada / Makefile.in
1 # Makefile for libada.
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: gnatlib
20
21 # Standard autoconf-set variables.
22 SHELL = @SHELL@
23 srcdir = @srcdir@
24 libdir = @libdir@
25 build = @build@
26 target = @target@
27 prefix = @prefix@
28
29 # Nonstandard autoconf-set variables.
30 enable_shared = @enable_shared@
31 LN_S=@LN_S@
32
33 # Variables for the user (or the top level) to override.
34 objext=.o
35 GNATLIBFLAGS= -W -Wall -gnatpg
36 THREAD_KIND=native
37 TRACE=no
38 LDFLAGS=
39
40 # The tedious process of getting CFLAGS right.
41 CFLAGS=-g
42 LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
43 GCC_WARN_CFLAGS = $(LOOSE_WARN)
44 WARN_CFLAGS = @warn_cflags@
45
46 TARGET_LIBGCC2_CFLAGS=
47 GNATLIBCFLAGS= -g -O2
48
49 # Get target-specific overrides for TARGET_LIBGCC2_CFLAGS.
50 host_subdir = @host_subdir@
51 GCC_DIR=../../$(host_subdir)/gcc
52 include $(GCC_DIR)/libgcc.mvars
53
54 # exeext should not be used because it's the *host* exeext.  We're building
55 # a *target* library, aren't we?!?  Likewise for CC.  Still, provide bogus
56 # definitions just in case something slips through the safety net provided
57 # by recursive make invocations in gcc/ada/Makefile.in
58 FLAGS_TO_PASS = \
59         "MAKEOVERRIDES=" \
60         "LDFLAGS=$(LDFLAGS)" \
61         "LN_S=$(LN_S)" \
62         "SHELL=$(SHELL)" \
63         "objext=$(objext)" \
64         "prefix=$(prefix)" \
65         "exeext=.exeext.should.not.be.used " \
66         'CC=the.host.compiler.should.not.be.needed' \
67         "GCC_FOR_TARGET=$(CC)" \
68         "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)"
69
70 # Rules to build gnatlib.
71 .PHONY: gnatlib gnatlib-plain gnatlib-sjlj gnatlib-zcx gnatlib-shared
72 gnatlib: @default_gnatlib_target@
73
74 gnatlib-plain: $(GCC_DIR)/ada/Makefile
75         test -f stamp-libada || \
76         $(MAKE) -C $(GCC_DIR)/ada $(FLAGS_TO_PASS) \
77           GNATLIBFLAGS="$(GNATLIBFLAGS)" \
78           GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
79           TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \
80           THREAD_KIND="$(THREAD_KIND)" \
81           TRACE="$(TRACE)" \
82           gnatlib \
83         && touch stamp-libada
84
85 gnatlib-sjlj gnatlib-zcx gnatlib-shared: $(GCC_DIR)/ada/Makefile
86         test -f stamp-libada || \
87         $(MAKE) -C $(GCC_DIR)/ada $(FLAGS_TO_PASS) \
88           GNATLIBFLAGS="$(GNATLIBFLAGS)" \
89           GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
90           TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \
91           THREAD_KIND="$(THREAD_KIND)" \
92           TRACE="$(TRACE)" \
93           $@ \
94         && touch stamp-libada
95
96 # Check uninstalled version.
97 check:
98
99 # Check installed version.
100 installcheck:
101
102 # Build info (none here).
103 info:
104
105 # Build DVI (none here).
106 dvi:
107
108 # Build PDF (none here).
109 pdf:
110
111 # Build html (none here).
112 html:
113
114 # Build TAGS (none here).
115 TAGS:
116
117 # Installation rules.
118 install:
119
120 install-info:
121
122 install-pdf:
123
124 install-html:
125
126 # Cleaning rules.
127 mostlyclean:
128
129 clean:
130
131 distclean:
132         $(RM) Makefile config.status config.log
133
134 maintainer-clean:
135
136 # Rules for rebuilding this Makefile.
137 Makefile: $(srcdir)/Makefile.in config.status
138         CONFIG_FILES=$@ ; \
139         CONFIG_HEADERS= ; \
140         $(SHELL) ./config.status
141
142 config.status: $(srcdir)/configure
143         $(SHELL) ./config.status --recheck
144
145 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac \
146         $(srcdir)/../config/acx.m4 $(srcdir)/../config/override.m4
147         cd $(srcdir) && autoconf
148
149 # Don't export variables to the environment, in order to not confuse
150 # configure.
151 .NOEXPORT: