1 ## Process this file with automake to produce Makefile.in
3 AUTOMAKE_OPTIONS = foreign
7 INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
9 lib_LTLIBRARIES = libvorbis.la libvorbisfile.la libvorbisenc.la
11 libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c \
12 lpc.c analysis.c synthesis.c psy.c info.c \
14 res0.c mapping0.c registry.c codebook.c sharedbook.c\
16 envelope.h lpc.h lsp.h codebook.h misc.h psy.h\
17 masking.h os.h mdct.h smallft.h highlevel.h\
18 registry.h scales.h window.h lookup.h lookup_data.h\
19 codec_internal.h backends.h bitrate.h
20 libvorbis_la_LDFLAGS = -no-undefined -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
22 libvorbisfile_la_SOURCES = vorbisfile.c
23 libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
24 libvorbisfile_la_LIBADD = libvorbis.la
26 libvorbisenc_la_SOURCES = vorbisenc.c
27 libvorbisenc_la_LDFLAGS = -no-undefined -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
28 libvorbisenc_la_LIBADD = libvorbis.la
30 EXTRA_PROGRAMS = barkmel tone psytune
31 CLEANFILES = $(EXTRA_PROGRAMS)
33 barkmel_SOURCES = barkmel.c
35 psytune_SOURCES = psytune.c
36 psytune_LDFLAGS = -static
37 psytune_LDADD = libvorbis.la
39 EXTRA_DIST = lookups.pl
42 $(MAKE) all CFLAGS="@DEBUG@"
45 $(MAKE) all CFLAGS="@PROFILE@"