diff options
author | Doug Evans <dje@gnu.org> | 1994-04-29 05:01:27 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-04-29 05:01:27 +0000 |
commit | 6c1cc7fa73d93f3408f0cbea1c67903edea82643 (patch) | |
tree | 9056111bd1bcee5e924fe6e985d323ba6d15c8c9 | |
parent | 0ac2a8ee7a7281c50655d815cc06d0b5a583b43f (diff) | |
download | gcc-6c1cc7fa73d93f3408f0cbea1c67903edea82643.zip gcc-6c1cc7fa73d93f3408f0cbea1c67903edea82643.tar.gz gcc-6c1cc7fa73d93f3408f0cbea1c67903edea82643.tar.bz2 |
(stamp-objlist): New target.
From-SVN: r7179
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d030508..af9824a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -605,6 +605,11 @@ cross-test.o: cross-test.c native gcc-cross # This is used only if the user explicitly asks for it. compilations: ${OBJS} +# Create a list of the language-independent object files so the language +# subdirectories needn't mention their names explicitly. +stamp-objlist: Makefile + echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z]\), ../\1,g' >stamp-objlist + # We call this executable `xgcc' rather than `gcc' # to avoid confusion if the current directory is in the path # and CC is `gcc'. It is renamed to `gcc' when it is installed. |