blob: 9079305a88ebb85e1e3e95473e4232c78092d1ad (
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
|
if SNDFILE
sndfile_programs = sbctester
else
sndfile_programs =
endif
if SBC
noinst_LTLIBRARIES = libsbc.la
libsbc_la_SOURCES = sbc.h sbc.c sbc_math.h sbc_tables.h
libsbc_la_CFLAGS = -finline-functions -funswitch-loops -fgcse-after-reload
noinst_PROGRAMS = sbcinfo sbcdec sbcenc $(sndfile_programs)
sbcdec_LDADD = libsbc.la
sbcenc_LDADD = libsbc.la
if SNDFILE
sbctester_LDADD = @SNDFILE_LIBS@
endif
endif
AM_CFLAGS = @SNDFILE_CFLAGS@
MAINTAINERCLEANFILES = Makefile.in
|