X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=examples%2FMakefile.am;h=381d4c98fa61cc15b6ca90ee3b9f26db28b6d695;hb=87cdc56dff7a9ea47db543bc4049e6242f32d4c3;hp=cb1b6ac594a965d17907637ea3110a29df931c04;hpb=50c1cc2d205718eda9b6076fa89a50912477a0b9;p=platform%2Fupstream%2Flibvorbis.git diff --git a/examples/Makefile.am b/examples/Makefile.am index cb1b6ac..381d4c9 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -7,18 +7,25 @@ INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@ noinst_PROGRAMS = decoder_example encoder_example chaining_example\ vorbisfile_example seeking_example -LDFLAGS = -all-static -LDADD = ../lib/libvorbis.la +EXTRA_DIST = frameview.pl + +# uncomment to build static executables from the example code +#LDFLAGS = -all-static decoder_example_SOURCES = decoder_example.c +decoder_example_LDADD = $(top_builddir)/lib/libvorbis.la @OGG_LIBS@ + encoder_example_SOURCES = encoder_example.c -encoder_example_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la +encoder_example_LDADD = $(top_builddir)/lib/libvorbisenc.la $(top_builddir)/lib/libvorbis.la @OGG_LIBS@ + chaining_example_SOURCES = chaining_example.c -chaining_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la +chaining_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la @OGG_LIBS@ + vorbisfile_example_SOURCES = vorbisfile_example.c -vorbisfile_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la +vorbisfile_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la @OGG_LIBS@ + seeking_example_SOURCES = seeking_example.c -seeking_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la +seeking_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la @OGG_LIBS@ debug: $(MAKE) all CFLAGS="@DEBUG@"