1 AUTOMAKE_OPTIONS = foreign
5 lib_LTLIBRARIES = libvorbisidec.la
7 libvorbisidec_la_SOURCES = mdct.c block.c window.c \
9 floor1.c floor0.c vorbisfile.c \
10 res012.c mapping0.c registry.c codebook.c \
11 sharedbook.c framing.c bitwise.c \
12 codebook.h misc.h mdct_lookup.h\
13 os.h mdct.h block.h ivorbisfile.h lsp_lookup.h\
14 registry.h window.h window_lookup.h\
15 codec_internal.h backends.h ogg.h \
16 asm_arm.h ivorbiscodec.h
17 libvorbisidec_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
19 EXTRA_PROGRAMS = ivorbisfile_example
20 CLEANFILES = $(EXTRA_PROGRAMS) $(lib_LTLIBRARIES)
22 ivorbisfile_example_SOURCES = ivorbisfile_example.c
23 ivorbisfile_example_LDFLAGS = -static
24 ivorbisfile_example_LDADD = libvorbisidec.la
26 includedir = $(prefix)/include/tremor
28 include_HEADERS = ivorbiscodec.h ivorbisfile.h ogg.h os_types.h config_types.h
32 $(MAKE) ivorbisfile_example
35 $(MAKE) all CFLAGS="@DEBUG@" LDFLAGS="-lefence"
38 $(MAKE) all CFLAGS="@PROFILE@"