]> git.jsancho.org Git - lugaru.git/blob - libvorbis-1.0.1/lib/Makefile.am
Quickly created CMake to build the source
[lugaru.git] / libvorbis-1.0.1 / lib / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AUTOMAKE_OPTIONS = foreign
4
5 SUBDIRS = modes books
6
7 INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
8
9 lib_LTLIBRARIES = libvorbis.la libvorbisfile.la libvorbisenc.la
10
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 \
13                         floor1.c floor0.c\
14                         res0.c mapping0.c registry.c codebook.c sharedbook.c\
15                         lookup.c bitrate.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@
21
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
25
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
29
30 EXTRA_PROGRAMS = barkmel tone psytune
31 CLEANFILES = $(EXTRA_PROGRAMS)
32
33 barkmel_SOURCES = barkmel.c
34 tone_SOURCES = tone.c
35 psytune_SOURCES = psytune.c
36 psytune_LDFLAGS = -static
37 psytune_LDADD = libvorbis.la
38
39 EXTRA_DIST = lookups.pl 
40
41 debug:
42         $(MAKE) all CFLAGS="@DEBUG@"
43
44 profile:
45         $(MAKE) all CFLAGS="@PROFILE@"