diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-10 12:55:01 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-10 12:55:01 +0000 |
commit | 7d1e7284e628dd3aa25f4068aed5489c1c049aa2 (patch) | |
tree | 5a6403fc0b9c3dec5b7e6a74b55f3ecdec5a7559 /gcc/Makefile.in | |
parent | 0bb60c659c927c19d6b6a2c9a5735d5e70018673 (diff) | |
download | gcc-7d1e7284e628dd3aa25f4068aed5489c1c049aa2.tar.gz |
(cpplib.o, fix-header.o): Update dependencies.
(cpperror.o, cppexp.o, cpphash.o): New rules, to show .h dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9918 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index b6d5c029a7b..b6484655117 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1597,7 +1597,7 @@ cppmain: cppmain.o cpplib.o cpphash.o cppalloc.o cpperror.o cppexp.o \ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ cppmain.o cpplib.o cpphash.o \ cppalloc.o cpperror.o cppexp.o version.o $(LIBS) -cpplib.o: cpplib.c $(CONFIG_H) pcp.h version.c config.status +cpplib.o: cpplib.c $(CONFIG_H) cpplib.h cpphash.h config.status $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \ @@ -1606,6 +1606,12 @@ cpplib.o: cpplib.c $(CONFIG_H) pcp.h version.c config.status -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \ -c `echo $(srcdir)/cpplib.c | sed 's,^\./,,'` +cpperror.o: cpperror.c $(CONFIG_H) cpplib.h + +cppexp.o: cppexp.c $(CONFIG_H) cpplib.h + +cpphash.o: cpphash.c cpplib.h cpphash.h + # Note for the stamp targets, we run the program `true' instead of # having an empty command (nothing following the semicolon). @@ -1785,7 +1791,7 @@ fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_LIBDEPS) \ scan-decls.o scan.o cpplib.o cpphash.o cppalloc.o version.o \ cppexp.o $(HOST_LIBS) -fix-header.o: fix-header.c obstack.h scan.h xsys-protos.h $(build_xm_file) +fix-header.o: fix-header.c obstack.h scan.h $(build_xm_file) $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c scan-decls.o: scan-decls.c scan.h cpplib.h $(build_xm_file) |