annotate src/libvorbis-1.3.3/examples/Makefile.am @ 56:af97cad61ff0

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