diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-16 01:34:07 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-16 01:34:07 +0000 |
commit | 071ea11e85eb9d529cc5eb3d35f6247466a21b99 (patch) | |
tree | 5deda65b8d7b04d1f4cbc534c3206d328e1267ec /sim/erc32/Makefile.in | |
parent | 1730ec6b1848f0f32154277f788fb29f88d8475b (diff) | |
download | gdb-071ea11e85eb9d529cc5eb3d35f6247466a21b99.zip gdb-071ea11e85eb9d529cc5eb3d35f6247466a21b99.tar.gz gdb-071ea11e85eb9d529cc5eb3d35f6247466a21b99.tar.bz2 |
Initial creation of sourceware repository
Diffstat (limited to 'sim/erc32/Makefile.in')
-rw-r--r-- | sim/erc32/Makefile.in | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in deleted file mode 100644 index 331e624..0000000 --- a/sim/erc32/Makefile.in +++ /dev/null @@ -1,73 +0,0 @@ -# Makefile template for Configure for the erc32sim library. -# Copyright (C) 1993, 1996 Free Software Foundation, Inc. -# Written by Cygnus Support -# Modified by J.Gaisler ESA/ESTEC -# -# This program 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. - -TERMCAP_LIB = @TERMCAP@ - -SIM_OBJS = exec.o erc32.o func.o help.o float.o interf.o -SIM_EXTRA_LIBS = ../../readline/libreadline.a $(TERMCAP_LIB) -lm -SIM_EXTRA_LIBDEPS = ../../readline/libreadline.a -SIM_EXTRA_ALL = sis -SIM_EXTRA_INSTALL = install-sis -SIM_EXTRA_CLEAN = clean-sis - - -# UARTS run at about 115200 baud (simulator time). Add -DFAST_UART to -# CFLAGS if faster (infinite) UART speed is desired. Might affect the -# behaviour of UART interrupt routines ... -SIM_EXTRA_CFLAGS = -DSTAT -DFAST_UART -DIUREV0 -DMECREV0 - -# `sis' doesn't need interf.o. -SIS_OFILES = exec.o erc32.o func.o help.o float.o - -@COMMON_MAKEFILE_FRAG@ - -sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) - $(CC) $(ALL_CFLAGS) -o sis \ - sis.o $(SIS_OFILES) $(COMMON_OBJS) $(EXTRA_LIBS) - -# FIXME: This computes the build host's endianness, doesn't it? -# There is AC_C_BIGENDIAN but it doesn't handle float endianness. -# [Are int/float endians every different on a sparc?] -end: $(srcdir)/end.c - $(CC_FOR_BUILD) $(srcdir)/end.c -o end -end.h: end - ./end > end.h - -# Copy the files into directories where they will be run. -install-sis: - $(INSTALL_XFORM) sis $(bindir)/sis - -clean-sis: - rm -f sis end end.h - -configure: - @echo "Rebuilding configure..." - if [ x"${srcdir}" = x"@srcdir@" ] ; then \ - srcdir=. ; export srcdir ; \ - else true ; fi ; \ - (cd $${srcdir}; autoconf --localdir=../common) - -# Circumvent Sun Make bug with VPATH. -erc32.o: erc32.c sis.h end.h -exec.o: exec.c sis.h end.h -float.o: float.c sis.h end.h -func.o: func.c -help.o: help.c -interf.o: interf.c sis.h end.h -sis.o: sis.c sis.h end.h |