Readded seeking_example.c to the build
[platform/upstream/libvorbis.git] / examples / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AUTOMAKE_OPTIONS = foreign
4
5 INCLUDES = -I$(top_srcdir)/include
6
7 noinst_PROGRAMS = decoder_example encoder_example chaining_example\
8                 vorbisfile_example seeking_example
9
10 LDADD = $(top_srcdir)/lib/.libs/libvorbis.a
11
12 decoder_example_SOURCES = decoder_example.c
13 encoder_example_SOURCES = encoder_example.c
14 chaining_example_SOURCES = chaining_example.c
15 chaining_example_LDADD = $(top_srcdir)/lib/.libs/libvorbisfile.a $(top_srcdir)/lib/.libs/libvorbis.a
16 vorbisfile_example_SOURCES = vorbisfile_example.c
17 vorbisfile_example_LDADD = $(top_srcdir)/lib/.libs/libvorbisfile.a $(top_srcdir)/lib/.libs/libvorbis.a
18 seeking_example_SOURCES = seeking_example.c
19 seeking_example_LDADD = $(top_srcdir)/lib/.libs/libvorbisfile.a $(top_srcdir)/lib/.libs/libvorbis.a
20
21 debug:
22         $(MAKE) all CFLAGS="@DEBUG@"
23
24 profile:
25         $(MAKE) all CFLAGS="@PROFILE@"