Update .gitignore.
[platform/upstream/flac.git] / examples / Makefile.lite
index 721c349..af9e78b 100644 (file)
@@ -1,5 +1,5 @@
 #  FLAC - Free Lossless Audio Codec
-#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
+#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009  Josh Coalson
 #
 #  This file is part the FLAC project.  FLAC is comprised of several
 #  components distributed under difference licenses.  The codec libraries
@@ -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_c_encode_file example_cpp_decode_file example_cpp_encode_file
+all: example_c_decode_file example_c_encode_file example_cpp_decode_file example_cpp_encode_file
 
 DEFAULT_CONFIG = release
 
@@ -33,5 +33,17 @@ release : all
 example_c_decode_file:
        (cd c/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
 
+example_c_encode_file:
+       (cd c/encode/file && $(MAKE) -f Makefile.lite $(CONFIG))
+
+example_cpp_decode_file:
+       (cd cpp/decode/file && $(MAKE) -f Makefile.lite $(CONFIG))
+
+example_cpp_encode_file:
+       (cd cpp/encode/file && $(MAKE) -f Makefile.lite $(CONFIG))
+
 clean:
        -(cd c/decode/file && $(MAKE) -f Makefile.lite clean)
+       -(cd c/encode/file && $(MAKE) -f Makefile.lite clean)
+       -(cd cpp/decode/file && $(MAKE) -f Makefile.lite clean)
+       -(cd cpp/encode/file && $(MAKE) -f Makefile.lite clean)