From: Erik de Castro Lopo Date: Sat, 23 Mar 2013 11:24:47 +0000 (+1100) Subject: Add CLEANFILES to relevant Makefile.am to force removal of Windows EXEs. X-Git-Tag: 1.3.0pre4~47 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fflac.git;a=commitdiff_plain;h=e14a08766adcf3f9abffd6b99a107b562c3c3132 Add CLEANFILES to relevant Makefile.am to force removal of Windows EXEs. This ensures they are removed even we've cross-compiled from Linux to Windows and then configured for Linux. We don't want the Windows EXEs to be run after configuring for Linux. --- diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index 44ac91e..1ddd3ce 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -53,3 +53,5 @@ flac_LDADD = \ @OGG_LIBS@ \ @LIBICONV@ \ -lm + +CLEANFILES = flac.exe diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index b96bafa..3cda2a2 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -50,3 +50,5 @@ metaflac_LDADD = \ @OGG_LIBS@ \ @LIBICONV@ \ -lm + +CLEANFILES = metaflac.exe diff --git a/src/test_grabbag/cuesheet/Makefile.am b/src/test_grabbag/cuesheet/Makefile.am index cb3cf51..2b240e1 100644 --- a/src/test_grabbag/cuesheet/Makefile.am +++ b/src/test_grabbag/cuesheet/Makefile.am @@ -29,3 +29,5 @@ test_cuesheet_LDADD = \ $(top_builddir)/src/libFLAC/libFLAC.la \ @OGG_LIBS@ \ -lm + +CLEANFILES = test_cuesheet.exe diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am index 0a57adf..d40eb68 100644 --- a/src/test_grabbag/picture/Makefile.am +++ b/src/test_grabbag/picture/Makefile.am @@ -29,3 +29,5 @@ test_picture_LDADD = \ $(top_builddir)/src/libFLAC/libFLAC.la \ @OGG_LIBS@ \ -lm + +CLEANFILES = test_picture.exe diff --git a/src/test_libFLAC++/Makefile.am b/src/test_libFLAC++/Makefile.am index b87c96c..c9fec78 100644 --- a/src/test_libFLAC++/Makefile.am +++ b/src/test_libFLAC++/Makefile.am @@ -40,3 +40,5 @@ test_libFLAC___SOURCES = \ decoders.h \ encoders.h \ metadata.h + +CLEANFILES = test_libFLAC++.exe diff --git a/src/test_libFLAC/Makefile.am b/src/test_libFLAC/Makefile.am index fec5311..e6136e7 100644 --- a/src/test_libFLAC/Makefile.am +++ b/src/test_libFLAC/Makefile.am @@ -44,3 +44,5 @@ test_libFLAC_SOURCES = \ encoders.h \ format.h \ metadata.h + +CLEANFILES = test_libFLAC.exe diff --git a/src/test_seeking/Makefile.am b/src/test_seeking/Makefile.am index 22e8aa8..806f3a1 100644 --- a/src/test_seeking/Makefile.am +++ b/src/test_seeking/Makefile.am @@ -31,3 +31,5 @@ test_seeking_LDADD = \ test_seeking_SOURCES = \ main.c + +CLEANFILES = test_seeking.exe diff --git a/src/test_streams/Makefile.am b/src/test_streams/Makefile.am index 5bda8f8..de0d693 100644 --- a/src/test_streams/Makefile.am +++ b/src/test_streams/Makefile.am @@ -25,3 +25,5 @@ test_streams_SOURCES = \ main.c test_streams_LDADD = $(top_builddir)/src/share/grabbag/libgrabbag.la -lm + +CLEANFILES = test_streams.exe