misc/libtremor/tremor/Makefile.am
changeset 9371 f3840de881bd
parent 9370 328264029b6e
child 9372 915436ff64ab
equal deleted inserted replaced
9370:328264029b6e 9371:f3840de881bd
     1 AUTOMAKE_OPTIONS = foreign
       
     2 
       
     3 INCLUDES = -I./
       
     4 
       
     5 lib_LTLIBRARIES = libvorbisidec.la
       
     6 
       
     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@
       
    18 
       
    19 EXTRA_PROGRAMS = ivorbisfile_example
       
    20 CLEANFILES = $(EXTRA_PROGRAMS) $(lib_LTLIBRARIES)
       
    21 
       
    22 ivorbisfile_example_SOURCES = ivorbisfile_example.c
       
    23 ivorbisfile_example_LDFLAGS = -static 
       
    24 ivorbisfile_example_LDADD = libvorbisidec.la
       
    25 
       
    26 includedir = $(prefix)/include/tremor
       
    27 
       
    28 include_HEADERS = ivorbiscodec.h ivorbisfile.h ogg.h os_types.h config_types.h
       
    29 
       
    30 example:
       
    31 	-ln -fs . vorbis
       
    32 	$(MAKE) ivorbisfile_example
       
    33 
       
    34 debug:
       
    35 	$(MAKE) all CFLAGS="@DEBUG@" 
       
    36 
       
    37 profile:
       
    38 	$(MAKE) all CFLAGS="@PROFILE@"