[test/Makefile.am] Match *-out.{pdf,ps,svg}

When cleaning files, limit the glob to only match *-out.{pdf,ps,svg} in
order to distinguish the current practice of naming vector output files
from possible future vector target/reference files.
This commit is contained in:
Chris Wilson 2008-08-13 17:41:40 +01:00
parent 49ea4fbb25
commit e3665bde5d

View file

@ -915,9 +915,9 @@ CLEANFILES = \
# Then it became a fancy find using many GNU extensions, but then the ugly
# reality of portability was raised and it became....
clean-local:
-${FIND} . -name '*.ps' -print | ${XARGS} ${RM}
-${FIND} . -name '*.pdf' -print | ${XARGS} ${RM}
-${FIND} . -name '*.svg' -print | ${XARGS} ${RM}
-${FIND} . -name '*-out.ps' -print | ${XARGS} ${RM}
-${FIND} . -name '*-out.pdf' -print | ${XARGS} ${RM}
-${FIND} . -name '*-out.svg' -print | ${XARGS} ${RM}
-${FIND} . -name '*-out.png' -print | ${XARGS} ${RM}
-${FIND} . -name '*-diff.png' -print | ${XARGS} ${RM}
-${FIND} . -name '*.log' -print | ${XARGS} ${RM}