VS2008 project files.
[xiph/unicode.git] / Tremor / Makefile.am
blobd14081f4f686c24174bba08c45f3b07bcf7faa0d
1 AUTOMAKE_OPTIONS = foreign
3 INCLUDES = -I./
5 lib_LTLIBRARIES = libvorbisidec.la
7 libvorbisidec_la_SOURCES = mdct.c block.c window.c \
8                         synthesis.c info.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
30 example:
31         -ln -fs . vorbis
32         $(MAKE) ivorbisfile_example
34 debug:
35         $(MAKE) all CFLAGS="@DEBUG@" 
37 profile:
38         $(MAKE) all CFLAGS="@PROFILE@"