[cairo-commit] 2 commits - test/.gitignore test/Makefile.am

Behdad Esfahbod behdad at kemper.freedesktop.org
Wed Dec 6 16:03:12 PST 2006


 test/.gitignore  |    1 +
 test/Makefile.am |   15 +++++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

New commits:
diff-tree 16c0db0d6843184e79b73a3613f65c0cc06a684d (from 3cf994779580fe3355356c00e20a93ddb676355e)
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Wed Dec 6 19:02:09 2006 -0500

    [test] Break the "make clean" target into serveral rm calls
    
    Some systems cannot handle very long list of arguments.  Carl was hitting this
    for "make clean".  Break it out into several rm calls triggered by the
    clean-local target.

diff --git a/test/Makefile.am b/test/Makefile.am
index ea5fb34..b840d4d 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -446,18 +446,21 @@ VALGRIND_FLAGS = \
 	--leak-check=yes --show-reachable=yes
 
 CLEANFILES =					\
-	*.ps					\
-	*.pdf					\
-	*.svg					\
-	*-out.png				\
-	*-diff.png				\
-	*.log					\
 	valgrind-log				\
 	index.html				\
 	ref.hash				\
 	$(EXTRA_LTLIBRARIES)			\
 	$(EXTRA_PROGRAMS)
 
+# some systems cannot handle all of our clean files together
+clean-local:
+	-$(RM) *.ps
+	-$(RM) *.pdf
+	-$(RM) *.svg
+	-$(RM) *-out.png
+	-$(RM) *-diff.png
+	-$(RM) *.log
+
 # Check tests under valgrind
 # Saves log to valgrind-log
 check-valgrind:
diff-tree 3cf994779580fe3355356c00e20a93ddb676355e (from 4b43a3a1c4d4f4659e604cea1d79e1b5e18ce107)
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Wed Dec 6 18:52:45 2006 -0500

    [.gitignore] Add big-trap

diff --git a/test/.gitignore b/test/.gitignore
index da83218..09caffb 100644
--- a/test/.gitignore
+++ b/test/.gitignore
@@ -5,6 +5,7 @@ Makefile.in
 index.html
 ref.hash
 a8-mask
+big-trap
 bitmap-font
 caps-joins
 caps-joins-alpha


More information about the cairo-commit mailing list