summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.lite2
-rw-r--r--src/Makefile.lite9
2 files changed, 5 insertions, 6 deletions
diff --git a/Makefile.lite b/Makefile.lite
index 645fa316..abd95912 100644
--- a/Makefile.lite
+++ b/Makefile.lite
@@ -31,7 +31,7 @@
topdir = .
-.PHONY: all doc src examples libFLAC libFLAC++ share/win_utf8_io share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams utils flacdiff flactimer
+.PHONY: all doc src examples libFLAC libFLAC++ share/win_utf8_io share plugin_common flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams flacdiff flactimer
all: doc src examples
DEFAULT_CONFIG = release
diff --git a/src/Makefile.lite b/src/Makefile.lite
index 72d35699..680f5fbe 100644
--- a/src/Makefile.lite
+++ b/src/Makefile.lite
@@ -26,7 +26,8 @@ else
ifeq ($(PROC),x86_64)
EXTRA_TARGETS =
else
- EXTRA_TARGETS = plugin_xmms
+ # Can add plugin_xmms here if desired.
+ EXTRA_TARGETS =
endif
endif
@@ -34,8 +35,8 @@ ifeq ($(findstring MINGW,$(OS)),MINGW)
EXTRA_TARGETS += share/win_utf8_io
endif
-.PHONY: all flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share/win_utf8_io share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils flacdiff flactimer
-all: flac libFLAC libFLAC++ metaflac plugin_common $(EXTRA_TARGETS) share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils
+.PHONY: all flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share/win_utf8_io share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams flacdiff flactimer
+all: flac libFLAC libFLAC++ metaflac plugin_common $(EXTRA_TARGETS) share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams
DEFAULT_CONFIG = release
@@ -49,8 +50,6 @@ debug : all
valgrind: all
release : all
-all: flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils
-
flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))