annotate src/libvorbis-1.3.3/examples/Makefile.am @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
parents 98c1576536ae
children
rev   line source
cannam@86 1 ## Process this file with automake to produce Makefile.in
cannam@86 2
cannam@86 3 AUTOMAKE_OPTIONS = foreign
cannam@86 4
cannam@86 5 INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
cannam@86 6
cannam@86 7 noinst_PROGRAMS = decoder_example encoder_example chaining_example\
cannam@86 8 vorbisfile_example seeking_example
cannam@86 9
cannam@86 10 EXTRA_DIST = frameview.pl
cannam@86 11
cannam@86 12 # uncomment to build static executables from the example code
cannam@86 13 #LDFLAGS = -all-static
cannam@86 14
cannam@86 15 decoder_example_SOURCES = decoder_example.c
cannam@86 16 decoder_example_LDADD = $(top_builddir)/lib/libvorbis.la
cannam@86 17
cannam@86 18 encoder_example_SOURCES = encoder_example.c
cannam@86 19 encoder_example_LDADD = $(top_builddir)/lib/libvorbisenc.la $(top_builddir)/lib/libvorbis.la
cannam@86 20
cannam@86 21 chaining_example_SOURCES = chaining_example.c
cannam@86 22 chaining_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la
cannam@86 23
cannam@86 24 vorbisfile_example_SOURCES = vorbisfile_example.c
cannam@86 25 vorbisfile_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la
cannam@86 26
cannam@86 27 seeking_example_SOURCES = seeking_example.c
cannam@86 28 seeking_example_LDADD = $(top_builddir)/lib/libvorbisfile.la $(top_builddir)/lib/libvorbis.la
cannam@86 29
cannam@86 30 debug:
cannam@86 31 $(MAKE) all CFLAGS="@DEBUG@"
cannam@86 32
cannam@86 33 profile:
cannam@86 34 $(MAKE) all CFLAGS="@PROFILE@"