mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-15 05:08:26 +00:00
The latter is a well known automake variable, used to set (per-Makefile) automake options and supported since the beginning of time (= automake 1.4). The former is a made-up variable that doesn't really do anything. Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
54 lines
876 B
Makefile
54 lines
876 B
Makefile
AM_CFLAGS = -I../src -Wall -DFLOATING_POINT -DVAR_ARRAYS
|
|
AUTOMAKE_OPTIONS = gnu
|
|
NAME = libcodec2
|
|
AM_CPPFLAGS = $(AM_CFLAGS)
|
|
|
|
lib_LTLIBRARIES = libcodec2.la
|
|
libcodec2_la_SOURCES = dump.c \
|
|
lpc.c \
|
|
nlp.c \
|
|
postfilter.c \
|
|
sine.c \
|
|
codec2.c \
|
|
four1.c \
|
|
interp.c \
|
|
lsp.c \
|
|
phase.c \
|
|
quantise.c \
|
|
pack.c \
|
|
codebook.c
|
|
|
|
libcodec2_la_CFLAGS = $(AM_CFLAGS)
|
|
libcodec2_la_LDFLAGS = $(LIBS)
|
|
|
|
library_includedir = $(prefix)
|
|
library_include_HEADERS = codec2.h \
|
|
defines.h \
|
|
four1.h \
|
|
interp.h \
|
|
lsp.h \
|
|
phase.h \
|
|
quantise.h \
|
|
comp.h \
|
|
dump.h \
|
|
globals.h \
|
|
lpc.h \
|
|
nlp.h \
|
|
postfilter.h \
|
|
sine.h \
|
|
codebook.h
|
|
|
|
bin_PROGRAMS = c2dec c2enc c2sim
|
|
|
|
c2dec_SOURCES = c2dec.c
|
|
c2dec_LDADD = $(lib_LTLIBRARIES)
|
|
c2dec_LDFLAGS = $(LIBS)
|
|
|
|
c2enc_SOURCES = c2enc.c
|
|
c2enc_LDADD = $(lib_LTLIBRARIES)
|
|
c2enc_LDFLAGS = $(LIBS)
|
|
|
|
c2sim_SOURCES = c2sim.c
|
|
c2sim_LDADD = $(lib_LTLIBRARIES)
|
|
c2sim_LDFLAGS = $(LIBS)
|