(gnucompare, gnucompare3): New targets.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 15 Dec 1993 23:09:47 +0000 (18:09 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 15 Dec 1993 23:09:47 +0000 (18:09 -0500)
From-SVN: r6236

gcc/Makefile.in

index 65b180a..6ccaed2 100644 (file)
@@ -2136,6 +2136,21 @@ compare3: force
        done
        -rm -f tmp-foo*
 
+# Compare the object files in the current directory with those in the
+# stage2 directory.  Use gnu cmp (diffutils v2.4 or later) to avoid
+# running tail and the overhead of twice copying each object file.
+
+gnucompare: force
+       for file in *.o; do \
+         cmp --ignore-initial=16 $$file stage2/$$file || true ; \
+       done
+
+# Similar, but compare with stage3 directory
+gnucompare3: force
+       for file in *.o; do \
+         cmp --ignore-initial=16 $$file stage3/$$file || true ; \
+       done
+
 # Copy the object files from a particular stage into a subdirectory.
 stage1: force
        -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi