]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in: Tweak to avoid building runtime.
authorJeffrey A Law <law@cygnus.com>
Sat, 5 Sep 1998 01:22:57 +0000 (01:22 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 5 Sep 1998 01:22:57 +0000 (19:22 -0600)
        * Makefile.in: Tweak to avoid building runtime.  It's built
        elsewhere now.

From-SVN: r22241

gcc/ch/ChangeLog
gcc/ch/Makefile.in

index 99b7e17f5d69095aa66a400cfc47849fe7ef7755..eb5195fc968c4a6f354823a8e0393135f71ce566 100644 (file)
@@ -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.
index 00f3d6acd9f26a9f2550c0e88e3634e84af024be..3e256fa6a205a1d77bf058e2529453730c3e3ee8 100644 (file)
@@ -126,7 +126,7 @@ all: all.indirect
 \f
 # 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
 
 \f
 Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
        cd ..; $(SHELL) config.status
 
-native: config.status ../cc1chill ../chill # runtime/libchill.a
+native: config.status ../cc1chill ../chill
 \f
 # Compiling object files from source files.