From: Mumit Khan Date: Tue, 9 Feb 1999 20:55:29 +0000 (+0000) Subject: Makefile.in (collect2$(exeext)): Delete redundant dependency and add missing exeext... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2d2576329e0779de0276837e3b7f5ba02e278f3;p=gcc.git Makefile.in (collect2$(exeext)): Delete redundant dependency and add missing exeext to target. * Makefile.in (collect2$(exeext)): Delete redundant dependency and add missing exeext to target. From-SVN: r25118 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48bfe6b9f54..c25d9dbd04a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -7,6 +7,9 @@ Tue Feb 9 17:27:29 GMT 1999 Nathan Sidwell Tue Feb 9 16:52:22 1999 Mumit Khan + * Makefile.in (collect2$(exeext)): Delete redundant dependency and + add missing exeext to target. + * gcc.c (convert_filename): Handle null filename argument. Wed Feb 10 15:46:10 1999 Michael Hayes diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c1053d3a8b8..6d18da845a1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1337,12 +1337,8 @@ graph.o: graph.c $(CONFIG_H) system.h toplev.h flags.h output.h $(RTL_H) \ hard-reg-set.h $(BASIC_BLOCK_H) sbitmap.o: sbitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) -collect2$(exeext): collect2.o tlink.o hash.o underscore.o \ - version.o $(LIBDEPS) - -COLLECT2_OBJS = collect2.o tlink.o hash.o \ - intl.o underscore.o version.o -collect2 : $(COLLECT2_OBJS) $(LIBDEPS) +COLLECT2_OBJS = collect2.o tlink.o hash.o intl.o underscore.o version.o +collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS) # Don't try modifying collect2 (aka ld) in place--it might be linking this. -rm -f collect2$(exeext) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(COLLECT2_OBJS) $(LIBS)