diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-08-21 13:07:54 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-08-21 13:07:54 -0400 |
commit | 7af4e69746a305de9459c0886e908fb17ed56de7 (patch) | |
tree | e3107e0017725dd7f7c7a07ef6f7ec33d4d292ce | |
parent | 8783b15e06b41ec45b155afa523fd06482982912 (diff) | |
download | gcc-7af4e69746a305de9459c0886e908fb17ed56de7.zip gcc-7af4e69746a305de9459c0886e908fb17ed56de7.tar.gz gcc-7af4e69746a305de9459c0886e908fb17ed56de7.tar.bz2 |
(underscore.c): Rename rule to stamp-under, and touch stamp-under at the end.
(underscore.c): Rename rule to stamp-under, and touch stamp-under at
the end. Add new rule for underscore.c that depends on stamp-under.
From-SVN: r10262
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 14ddd80..5291cde 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1087,7 +1087,9 @@ collect2.o : collect2.c $(CONFIG_H) gstab.h obstack.h demangle.h cplus-dem.o: cplus-dem.c demangle.h -underscore.c: $(GCC_PASSES) +underscore.c: stamp-under ; @true + +stamp-under: $(GCC_PASSES) echo "int xxy_us_dummy;" >tmp-dum.c $(GCC_FOR_TARGET) -S tmp-dum.c echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c @@ -1098,6 +1100,7 @@ underscore.c: $(GCC_PASSES) fi $(srcdir)/move-if-change tmp-under.c underscore.c -rm -f tmp-dum.c tmp-dum.s + touch stamp-under # Objective C language specific files. |