diff options
author | Zack Weinberg <zack@rabi.columbia.edu> | 1999-02-17 11:54:59 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 1999-02-17 11:54:59 +0000 |
commit | 693ff496a991bad75bc3f4daf10c67d05dc1ee78 (patch) | |
tree | dff668e36c011004a23113b044b8ab579cafdff1 /gcc | |
parent | 90612787dd1423708a7a1d039c4955e1a6166457 (diff) | |
download | gcc-693ff496a991bad75bc3f4daf10c67d05dc1ee78.zip gcc-693ff496a991bad75bc3f4daf10c67d05dc1ee78.tar.gz gcc-693ff496a991bad75bc3f4daf10c67d05dc1ee78.tar.bz2 |
Makefile.in: Correct dependencies for cpplib object files.
1999-02-17 14:49 -0500 Zack Weinberg <zack@rabi.columbia.edu>
* Makefile.in: Correct dependencies for cpplib object files.
From-SVN: r25269
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 22 |
2 files changed, 12 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7f3e198..fb9bad3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +1999-02-17 14:49 -0500 Zack Weinberg <zack@rabi.columbia.edu> + + * Makefile.in: Correct dependencies for cpplib object files. + Wed Feb 17 14:04:18 1999 Michael Meissner <meissner@cygnus.com> * rs6000.md ({add,sub}si3 `.'): Add alternatives to use CR other diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 7fae234..8a159b1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1970,8 +1970,8 @@ cppmain$(exeext): cppmain.o libcpp.a $(LIBDEPS) cppmain.o: cppmain.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cpplib.o: cpplib.c $(CONFIG_H) cpplib.h machmode.h cpphash.h intl.h \ - config.status system.h prefix.h Makefile +cpplib.o: cpplib.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h \ + prefix.h output.h Makefile $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \ @@ -1980,19 +1980,13 @@ cpplib.o: cpplib.c $(CONFIG_H) cpplib.h machmode.h cpphash.h intl.h \ -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ -c `echo $(srcdir)/cpplib.c | sed 's,^\./,,'` -cpperror.o: cpperror.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h - cppulp.o: cppulp.c $(CONFIG_H) system.h output.h - -cppexp.o: cppexp.c $(CONFIG_H) cpplib.h intl machmode.h system.h - -cppfiles.o: cppfiles.c $(CONFIG_H) cpplib.h machmode.h system.h - -cpphash.o: cpphash.c cpplib.h machmode.h cpphash.h $(CONFIG_H) system.h - -cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h machmode.h system.h - -cppinit.o: cppalloc.c $(CONFIG_H) cpplib.h machmode.h system.h +cpphash.o: cpphash.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h +cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cpperror.o: cpperror.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cppexp.o: cppexp.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cppfiles.o: cppfiles.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cppinit.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h # Note for the stamp targets, we run the program `true' instead of # having an empty command (nothing following the semicolon). |