summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2000-10-05 03:15:54 +0000
committerJack Moffitt <jack@xiph.org>2000-10-05 03:15:54 +0000
commit4a12b5ac9651444a84fb579c15861f7e7cba9d9e (patch)
tree7697bb08132a69bfcea861e8938e589158d30407
parentabdda9f253ee93b833f1c85266102cc00ae527aa (diff)
downloadlibvorbis-git-4a12b5ac9651444a84fb579c15861f7e7cba9d9e.tar.gz
We're now building against static libs for the examples. This way
you don't have to make install to test code :) jack. svn path=/branches/branch_postbeta2/vorbis/; revision=714
-rw-r--r--examples/Makefile.am6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index ce58d18e..ff86f678 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -7,14 +7,12 @@ INCLUDES = -I$(top_srcdir)/include
noinst_PROGRAMS = decoder_example encoder_example chaining_example\
vorbisfile_example
+LDADD = $(top_srcdir)/lib/.libs/libvorbis.a
+
decoder_example_SOURCES = decoder_example.c
-decoder_example_LDFLAGS = -L$(top_srcdir)/lib/.libs -lvorbis
encoder_example_SOURCES = encoder_example.c
-encoder_example_LDFLAGS = -L$(top_srcdir)/lib/.libs -lvorbis
chaining_example_SOURCES = chaining_example.c
-chaining_example_LDFLAGS = -L$(top_srcdir)/lib/.libs -lvorbis
vorbisfile_example_SOURCES = vorbisfile_example.c
-vorbisfile_example_LDFLAGS = -L$(top_srcdir)/lib/.libs -lvorbis
debug:
$(MAKE) all CFLAGS="@DEBUG@"