summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2000-10-21 18:06:14 +0000
committerJack Moffitt <jack@xiph.org>2000-10-21 18:06:14 +0000
commit999e104362d36b6fc92c30d7c390da99ea92ef10 (patch)
treefd3a52cb18238c18cb4cf27c18802eb66228295d
parent83276809353a3c4870ffa9c5342e27770eff944b (diff)
downloadlibvorbis-git-999e104362d36b6fc92c30d7c390da99ea92ef10.tar.gz
make dist fixes that i forgot to commit
svn path=/branches/branch_beta3/vorbis/; revision=745
-rw-r--r--lib/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
new file mode 100644
index 00000000..13b9fff2
--- /dev/null
+++ b/lib/Makefile.am
@@ -0,0 +1,25 @@
+## Process this file with automake to produce Makefile.in
+
+AUTOMAKE_OPTIONS = foreign
+
+INCLUDES = -I$(top_srcdir)/include
+
+lib_LTLIBRARIES = libvorbis.la libvorbisfile.la
+
+libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c lpc.c\
+ analysis.c synthesis.c psy.c info.c time0.c floor0.c\
+ res0.c mapping0.c registry.c codebook.c sharedbook.c\
+ iir.c lookup.c\
+ envelope.h lpc.h lsp.h bookinternal.h misc.h psy.h\
+ masking.h sharedbook.h iir.h os.h mdct.h smallft.h\
+ registry.h scales.h window.h lookup.h lookup_data.h
+libvorbis_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
+
+libvorbisfile_la_SOURCES = vorbisfile.c
+libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
+
+debug:
+ $(MAKE) all CFLAGS="@DEBUG@"
+
+profile:
+ $(MAKE) all CFLAGS="@PROFILE@"