aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-09-05 01:22:57 +0000
committerJeff Law <law@gcc.gnu.org>1998-09-04 19:22:57 -0600
commitd4751916e806a1e20a51f3d03b64b05443b57918 (patch)
treec51d458d760dac4dde4b19d3b04019eb8e717c2b /gcc
parent675adc8425a819e47aba5610d26e113d148719c7 (diff)
downloadgcc-d4751916e806a1e20a51f3d03b64b05443b57918.zip
gcc-d4751916e806a1e20a51f3d03b64b05443b57918.tar.gz
gcc-d4751916e806a1e20a51f3d03b64b05443b57918.tar.bz2
Makefile.in: Tweak to avoid building runtime.
* Makefile.in: Tweak to avoid building runtime. It's built elsewhere now. From-SVN: r22241
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ch/ChangeLog5
-rw-r--r--gcc/ch/Makefile.in9
2 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index 99b7e17..eb5195f 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -1,3 +1,8 @@
+Sat Sep 5 02:21:08 1998 Jeffrey A Law (law@cygnus.com)
+
+ * Makefile.in: Tweak to avoid building runtime. It's built
+ elsewhere now.
+
Thu Sep 3 15:32:03 1998 Dave Brolley <brolley@cygnus.com>
* typeck.c (layout_chill_range_type): set TYPE_SIZE_UNIT.
diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in
index 00f3d6a..3e256fa 100644
--- a/gcc/ch/Makefile.in
+++ b/gcc/ch/Makefile.in
@@ -126,7 +126,7 @@ all: all.indirect
# Now figure out from those variables how to compile and link.
-all.indirect: Makefile compiler
+all.indirect: Makefile ../chill ../cc1chill
# IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
@@ -202,9 +202,6 @@ CHILL_OBJS = parse.o actions.o except.o grant.o lang.o \
OBJS = `cat ../stamp-objlist`
OBJDEPS = ../stamp-objlist
-compiler: ../chill ../cc1chill
- cd runtime; $(MAKE) $(FLAGS_TO_PASS) CC="$(CC)" all
-
../cc1chill: $(P) $(CHILL_OBJS) $(OBJDEPS) $(LIBDEPS)
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(CHILL_OBJS) \
$(OBJS) $(C_OBJS) $(LIBS)
@@ -220,7 +217,6 @@ utils/printf : $(srcdir)/utils/printf.c
#
check: ../cc1chill utils/printf
cd ..; $(MAKE) $(FLAGS_TO_PASS) xgcc gcov cpp cc1 ld
- cd runtime; make libchill.a
$(srcdir)/regression.sh -d -p
clean-tests:
@@ -237,13 +233,12 @@ mostlyclean:
rm -f *.o
clean: mostlyclean
- cd runtime; $(MAKE) clean
Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
cd ..; $(SHELL) config.status
-native: config.status ../cc1chill ../chill # runtime/libchill.a
+native: config.status ../cc1chill ../chill
# Compiling object files from source files.