Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « libcelt - gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5200dfcf9f14cb3a00cb9ea93f8abe8ba01f1016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Disable automatic dependency tracking if using other tools than gcc and gmake
#AUTOMAKE_OPTIONS = no-dependencies


pkginclude_HEADERS = celt.h celt_types.h celt_header.h
EXTRA_DIST= match-test.sh

#INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) @OGG_CFLAGS@

TESTS = match-test.sh

noinst_SCRIPTS = match-test.sh

lib_LTLIBRARIES = libcelt.la

# Sources for compilation in the library
libcelt_la_SOURCES = bands.c bitrdec.c bitree.c bitrenc.c celt.c cwrs.c \
	ecintrin.h entcode.c entdec.c entenc.c header.c kiss_fft.c \
	kiss_fftr.c laplace.c mdct.c modes.c pitch.c psy.c quant_bands.c \
	quant_pitch.c rangedec.c rangeenc.c rate.c vq.c

#noinst_HEADERS =

libcelt_la_LDFLAGS = -version-info @CELT_LT_CURRENT@:@CELT_LT_REVISION@:@CELT_LT_AGE@

noinst_HEADERS = arch.h bands.h bitrdec.h bitree.h bitrenc.h cwrs.h \
	ecintrin.h entcode.h entdec.h entenc.h kiss_fft.h \
	kiss_fftr.h _kiss_fft_guts.h laplace.h mdct.h \
	mfrngcod.h modes.h os_support.h pgain_table.h pitch.h psy.h \
	quant_bands.h quant_pitch.h rate.h vq.h

noinst_PROGRAMS = testcelt
testcelt_SOURCES = testcelt.c
testcelt_LDADD = libcelt.la
INCLUDES = 
libcelt_la_LIBADD =