blob: e879170e869dcb0f04345e8ac060e4e772d0b8f8 (
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
|
include $(top_srcdir)/misc/Makefile.quiet
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(DEFAULT_OCFLAGS) $(VISIBILITY_FLAG)
AM_LDFLAGS = $(xineplug_ldflags)
noinst_LTLIBRARIES = libgsm610.la
libgsm610_la_SOURCES = \
add.c \
decode.c \
gsm_create.c \
gsm_decode.c \
gsm_destroy.c \
long_term.c \
lpc.c \
rpe.c \
short_term.c \
table.c
noinst_HEADERS = \
gsm_config.h \
gsm.h \
private.h \
proto.h \
unproto.h
|