* Makefile.in (comparison): Only check *.o; we don't care if timestamps
authorKen Raeburn <raeburn@cygnus>
Fri, 6 Oct 1995 00:57:16 +0000 (00:57 +0000)
committerKen Raeburn <raeburn@cygnus>
Fri, 6 Oct 1995 00:57:16 +0000 (00:57 +0000)
inserted by the native linker differ.

gas/ChangeLog
gas/Makefile.in

index bc1de69899bedd6f4226d623371e92570ba74258..e1b2b8a813f614549fefb2861820d882b4f07164 100644 (file)
@@ -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.
index 2fd033915674a57de6632c8ba04b07e7f3e26c4c..cd0d7b10b0e3f07b93a8854c10f7bc96dbe1e721 100644 (file)
@@ -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 \
This page took 0.037592 seconds and 4 git commands to generate.