Mercurial > hg > sv-dependency-builds
annotate src/libvorbis-1.3.3/examples/Makefile.am @ 168:ceec0dd9ec9c
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +0000 |
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@" |