aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-10-06 00:57:16 +0000
committerKen Raeburn <raeburn@cygnus>1995-10-06 00:57:16 +0000
commit6b0a6eaa68638d9c243ddf986218d8bb0e223928 (patch)
tree93aa06ba7dc1c4e375a1ee458974c3a3e817133e /gas
parentd89861c7c4c183d0ff166e8b8e2aeccbf3e1e321 (diff)
downloadfsf-binutils-gdb-6b0a6eaa68638d9c243ddf986218d8bb0e223928.zip
fsf-binutils-gdb-6b0a6eaa68638d9c243ddf986218d8bb0e223928.tar.gz
fsf-binutils-gdb-6b0a6eaa68638d9c243ddf986218d8bb0e223928.tar.bz2
* Makefile.in (comparison): Only check *.o; we don't care if timestamps
inserted by the native linker differ.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog3
-rw-r--r--gas/Makefile.in6
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index bc1de69..e1b2b8a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,8 @@
Thu Oct 5 20:17:30 1995 Ken Raeburn <raeburn@cygnus.com>
+ * Makefile.in (comparison): Only check *.o; we don't care if
+ timestamps inserted by the native linker differ.
+
* config/tc-alpha.c (alpha_align): Only fill with a no-op pattern
if alignment stricter than 4 bytes is requested; in that case,
align to a 4-byte boundary first.
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 2fd0339..cd0d7b1 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -430,7 +430,9 @@ distclean: clean-here
-rm -f config.status Makefile targ-env.h targ-cpu.h \
targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \
config-stamp config.h conf config.log config.cache .gdbinit
-realclean: clean distclean
+maintainer-clean realclean: clean distclean
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
-rm -rf $(DISTSTUFF)
# Entry points `install', `includes' and `uninstall'.
@@ -508,7 +510,7 @@ against=stage2
# temporary assembly file names.
comparison: force
x=0 ; \
- for file in $(STAGESTUFF) ; do \
+ for file in *.o ; do \
tail +16c ./$$file > tmp-foo1; \
if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
if cmp tmp-foo1 tmp-foo2 ; then \