From 0f325b0786ed4d42634a920faa2be9778a9649c2 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 11 Sep 2007 06:29:04 +0000 Subject: [PATCH] replace CLEANFILES with clean-local: target --- test/Makefile.am | 14 ++------------ test/flac-to-flac-metadata-test-files/Makefile.am | 4 ++-- test/metaflac-test-files/Makefile.am | 4 ++-- 3 files changed, 6 insertions(+), 16 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 13dc9cb..bf6e4f4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -47,15 +47,5 @@ EXTRA_DIST = \ test_streams.sh \ test_bins.sh -CLEANFILES = \ - $(wildcard *.raw) \ - $(wildcard *.flac) \ - $(wildcard *.oga) \ - $(wildcard *.ogg) \ - $(wildcard *.cmp) \ - $(wildcard *.aiff) \ - $(wildcard *.wav) \ - $(wildcard *.diff) \ - $(wildcard *.log) \ - $(wildcard *.cue) \ - core +clean-local: + -rm -f *.raw *.flac *.oga *.ogg *.cmp *.aiff *.wav *.diff *.log *.cue core diff --git a/test/flac-to-flac-metadata-test-files/Makefile.am b/test/flac-to-flac-metadata-test-files/Makefile.am index 9a46784..511a2e2 100644 --- a/test/flac-to-flac-metadata-test-files/Makefile.am +++ b/test/flac-to-flac-metadata-test-files/Makefile.am @@ -41,5 +41,5 @@ EXTRA_DIST = \ input-VA.flac \ input0.cue -CLEANFILES = \ - $(wildcard out.*) +clean-local: + -rm -f out.* diff --git a/test/metaflac-test-files/Makefile.am b/test/metaflac-test-files/Makefile.am index ffd6431..03dda7f 100644 --- a/test/metaflac-test-files/Makefile.am +++ b/test/metaflac-test-files/Makefile.am @@ -80,5 +80,5 @@ EXTRA_DIST = \ case61-expect.meta \ case62-expect.meta -CLEANFILES = \ - $(wildcard out.*) +clean-local: + -rm -f out.* -- 2.7.4