Displaying 1 result from an estimated 1 matches for "098a63d".
Did you mean:
098763
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
...file.in
+aclocal.m4
+autom4te.cache/
+config.guess
+config.log
+config.status
+config.sub
+configure
+depcomp
+examples/opusfile_example
+examples/seeking_example
+install-sh
+libopusfile-*.tar.*
+libtool
+ltmain.sh
+missing
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..098a63d
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,22 @@
+AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS)
+
+dist_doc_DATA = COPYING AUTHORS README.txt
+
+include_HEADERS = include/opusfile.h
+
+lib_LTLIBRARIES = libopusfile.la
+libopusfile_la_SOURCES = \
+ src/http.c src/info.c \
+ src/internal.c src/i...