diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 10:44:14 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 10:44:14 +0000 |
commit | 8e31204be43d251dd6ca6d769a116811f4b8ae73 (patch) | |
tree | 8f721aecf70da14b12b77842070da34bca9a42c2 /libada/Makefile.in | |
parent | 2b26248867ba6aaff513c07954cae6c91f3f2155 (diff) | |
download | gcc-8e31204be43d251dd6ca6d769a116811f4b8ae73.tar.gz |
2003-02-10 Arnaud Charlet <charlet@act-europe.fr>
PR ada/6637, PR ada/5911
* configure.in, Makefile.in, configure: Merge with libada-branch
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77592 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libada/Makefile.in')
-rw-r--r-- | libada/Makefile.in | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/libada/Makefile.in b/libada/Makefile.in new file mode 100644 index 00000000000..4300765a3bd --- /dev/null +++ b/libada/Makefile.in @@ -0,0 +1,93 @@ +# Makefile for libada. +# Copyright 2003, 2004 Free Software Foundation, Inc. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +# Default target; must be first. +all: gnatlib gnattools + +# Standard autoconf-set variables. +SHELL = @SHELL@ +srcdir = @srcdir@ +build = @build@ +target = @target@ +enable_shared = @enable_shared@ + +# Nonstandard autoconf-set variables. + +FLAGS_TO_PASS = + +GNATLIB = gnatlib + +ifeq ($(build),$(target)) + GNATTOOLS = gnattools + + ifeq ($(enable_shared),yes) + GNATLIB = gnatlib-shared + endif + +else + GNATTOOLS = cross-gnattools ada.all.cross +endif + +# Rules to build gnatlib. +gnatlib: + $(MAKE) -C ../../gcc $(FLAGS_TO_PASS) $(GNATLIB) + +# Rules to build gnattools. +gnattools: + $(MAKE) -C ../../gcc $(FLAGS_TO_PASS) $(GNATTOOLS) + +# Check uninstalled version. +check: + +# Check installed version. +installcheck: + +# Build info (none here). +info: + +# Build DVI (none here). +dvi: + +# Build TAGS (none here). +TAGS: + +# Installation rules. +install: + +install-info: + +# Cleaning rules. +mostlyclean: + +clean: + +distclean: + $(RM) Makefile config.status config.log + +maintainer-clean: + +# Rules for rebuilding this Makefile. +Makefile: $(srcdir)/Makefile.in config.status + CONFIG_FILES=$@ ; \ + CONFIG_HEADERS= ; \ + $(SHELL) ./config.status + +config.status: $(srcdir)/configure + $(SHELL) ./config.status --recheck + +$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in + cd $(srcdir) && autoconf |