Displaying 4 results from an estimated 4 matches for "example_cpp_decode_file".
Did you mean:
example_c_decode_file
2007 Sep 12
1
[PATCH] Fix errors in new Makefile.ams
Josh,
The two Makefile.ams that you added recently:
examples/c/decode/file/Makefile.am
examples/cpp/decode/file/Makefile.am
are generating errors like this:
examples/c/decode/file/Makefile.am:22: blank line following trailing backslash
examples/cpp/decode/file/Makefile.am:22: blank line following trailing backslash
The attached patch fixes these.
Erik
--
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...$(top_builddir)/src/libFLAC/libFLAC.la \
diff --git a/examples/cpp/decode/file/Makefile.am b/examples/cpp/decode/file/Makefile.am
index 7b807e6..f55555b 100644
--- a/examples/cpp/decode/file/Makefile.am
+++ b/examples/cpp/decode/file/Makefile.am
@@ -19,7 +19,7 @@ EXTRA_DIST = \
Makefile.lite \
example_cpp_decode_file.dsp \
example_cpp_decode_file.vcproj
-
+AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
noinst_PROGRAMS = example_cpp_decode_file
example_cpp_decode_file_LDADD = \
$(top_builddir)/src/libFLAC++/libFLAC++.la \
diff --git a/examples/cpp/encode/file/Makefile.am b/exam...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...= -lFLAC $(OGG_LIBS) -lm
endif
SRCS_C = main.c
diff --git a/examples/cpp/decode/file/Makefile.lite
b/examples/cpp/decode/file/Makefile.lite
index 6d25c87..ccf1e63 100644
--- a/examples/cpp/decode/file/Makefile.lite
+++ b/examples/cpp/decode/file/Makefile.lite
@@ -27,9 +27,9 @@ PROGRAM_NAME = example_cpp_decode_file
INCLUDES = -I$(topdir)/include
ifeq ($(OS),Darwin)
-EXPLICIT_LIBS = $(libdir)/libFLAC++.a $(libdir)/libFLAC.a
$(OGG_LIB_DIR)/libogg.a -lm
+ EXPLICIT_LIBS = $(libdir)/libFLAC++.a $(libdir)/libFLAC.a
$(OGG_EXPLICIT_LIBS) -lm
else
-LIBS = -lFLAC++ -lFLAC -L$(OGG_LIB_DIR) -logg -lm
+ LIB...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...= -lFLAC $(OGG_LIBS) -lm
endif
SRCS_C = main.c
diff --git a/examples/cpp/decode/file/Makefile.lite
b/examples/cpp/decode/file/Makefile.lite
index 6d25c87..ccf1e63 100644
--- a/examples/cpp/decode/file/Makefile.lite
+++ b/examples/cpp/decode/file/Makefile.lite
@@ -27,9 +27,9 @@ PROGRAM_NAME = example_cpp_decode_file
INCLUDES = -I$(topdir)/include
ifeq ($(OS),Darwin)
-EXPLICIT_LIBS = $(libdir)/libFLAC++.a $(libdir)/libFLAC.a
$(OGG_LIB_DIR)/libogg.a -lm
+ EXPLICIT_LIBS = $(libdir)/libFLAC++.a $(libdir)/libFLAC.a
$(OGG_EXPLICIT_LIBS) -lm
else
-LIBS = -lFLAC++ -lFLAC -L$(OGG_LIB_DIR) -logg -lm
+ LIB...