summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-09-12 05:35:12 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-09-12 05:35:12 +0000
commit1b21c25c4f1f12ad9adc48623e544c166f66f39f (patch)
treed8791c4086f4c865446c149a6b11b7ede17d45dd /examples
parent0af1527d468811a120d74a7ffd7ccc782c837a27 (diff)
downloadflac-1b21c25c4f1f12ad9adc48623e544c166f66f39f.tar.gz
add example_cpp_decode_file
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.lite8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/Makefile.lite b/examples/Makefile.lite
index 721c3497..48bdd2d9 100644
--- a/examples/Makefile.lite
+++ b/examples/Makefile.lite
@@ -15,8 +15,8 @@
# restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution.
-.PHONY: all example_c_decode_file
-all: example_c_decode_file
+.PHONY: all example_c_decode_file example_cpp_decode_file
+all: example_c_decode_file example_cpp_decode_file
DEFAULT_CONFIG = release
@@ -33,5 +33,9 @@ release : all
example_c_decode_file:
(cd c/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
+example_cpp_decode_file:
+ (cd cpp/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
+
clean:
-(cd c/decode/file && $(MAKE) -f Makefile.lite clean)
+ -(cd cpp/decode/file && $(MAKE) -f Makefile.lite clean)