diff options
author | Doug Evans <dje@gnu.org> | 1994-05-03 23:04:27 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-05-03 23:04:27 +0000 |
commit | ce7685ee29481afc2eb06a82f399fa70d6b60e2c (patch) | |
tree | fbcc353ce4ed678bf3c511c85efea46b175d49a8 | |
parent | 6b2bd61e3af56bcde5193bdccd3d8ccae6c96bd3 (diff) | |
download | gcc-ce7685ee29481afc2eb06a82f399fa70d6b60e2c.zip gcc-ce7685ee29481afc2eb06a82f399fa70d6b60e2c.tar.gz gcc-ce7685ee29481afc2eb06a82f399fa70d6b60e2c.tar.bz2 |
(stamp-objlist): Depend on OBJS and BC_OBJS so that
subdir makes will know to re-link.
From-SVN: r7195
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index af9824a..cdf2859 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -607,7 +607,7 @@ compilations: ${OBJS} # Create a list of the language-independent object files so the language # subdirectories needn't mention their names explicitly. -stamp-objlist: Makefile +stamp-objlist: Makefile $(OBJS) $(BC_OBJS) echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z]\), ../\1,g' >stamp-objlist # We call this executable `xgcc' rather than `gcc' |