From 03261851a10dd2d6900a0a00a7515a0a46fb5d76 Mon Sep 17 00:00:00 2001 From: Ranjith Kumaran Date: Fri, 17 Mar 2000 22:48:54 +0000 Subject: 20000317 sourceware import --- libgloss/testsuite/Makefile.in | 109 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 libgloss/testsuite/Makefile.in (limited to 'libgloss/testsuite/Makefile.in') diff --git a/libgloss/testsuite/Makefile.in b/libgloss/testsuite/Makefile.in new file mode 100644 index 0000000..28fd914 --- /dev/null +++ b/libgloss/testsuite/Makefile.in @@ -0,0 +1,109 @@ +# +# Makefile +# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation +# +# 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ +# + +srcdir = . + +prefix = /usr/local + +exec_prefix = $(prefix) +bindir = $(exec_prefix)/bin +libdir = $(exec_prefix)/lib +tooldir = $(exec_prefix) + +SHELL = /bin/sh + +INSTALL = `cd $(srcdir); pwd`/../../install-sh -c +INSTALL_PROGRAM = $(INSTALL) +INSTALL_DATA = $(INSTALL) + +AR_FLAGS = qv +BISON = bison +MAKEINFO = makeinfo + +SUBDIRS = +OBJROOT = +SRCROOT = + +.NOEXPORT: +MAKEOVERRIDES= + +#### Host, target, and site specific Makefile fragments come in here. +### + +# These are roughly topologically sorted in order to make porting more +# streamlined. +FLAGS_TO_PASS = \ + "prefix=$(prefix)" \ + "exec_prefix=$(exec_prefix)" \ + "CC=$(CC)" \ + "CFLAGS=$(CFLAGS)" \ + "AR=$(AR)" \ + "RANLIB=$(RANLIB)" \ + "AR_FLAGS=$(AR_FLAGS)" \ + "AS=$(AS)" \ + "CROSS_CFLAGS=$(CROSS_CFLAGS)" \ + "TARGET_CFLAGS=$(TARGET_CFLAGS)" \ + "OBJROOT=$(OBJROOT)" + +all: + @for dir in ${SUBDIRS}; do \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \ + else true; fi; \ + done + +install: + -rm -f *~ core *.o a.out xgdb *.x + for dir in ${SUBDIRS}; do \ + echo "$$dir:"; \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install); \ + else true; fi; \ + done + +clean-here: + -rm -f *~ core *.o a.out xgdb *.x + +clean mostlyclean: clean-here + for dir in ${SUBDIRS}; do \ + echo "$$dir:"; \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \ + else true; fi; \ + done + +distclean maintainer-clean realclean: clean-here + for dir in ${SUBDIRS}; do \ + echo "$$dir:"; \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \ + else true; fi; \ + done + -rm -f Makefile config.status *-init.exp site.* + -rm -fr *.log summary detail *.sum blockit + +.PHONY: info install-info clean-info +info: +install-info: +clean-info: + +force: + +Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) + $(SHELL) config.status -- cgit v1.1