blob: 70271bbe3674b8f6dd733a0f6da77811bdbbb80c (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# # Process this file with automake to produce Makefile.in.
AM_CPPFLAGS = \
$(PTHREAD_CFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/src
noinst_LTLIBRARIES = libtc.la
if !HAVE_GETOPT_LONG_ONLY
GETOPT_FILES = getopt.c getopt1.c
endif
if HAVE_IBP
XIO_FILES = libxio.c
endif
if HAVE_GETTIMEOFDAY
TIMER_FILES = tctimer.c
endif
libtc_la_SOURCES = \
cfgfile.c \
framecode.c \
iodir.c \
optstr.c \
ratiocodes.c \
strlcat.c \
strlcpy.c \
tc_functions.c \
tccodecs.c \
tcframes.c \
tcglob.c \
tclist.c \
tcmodule.c \
tcmoduleinfo.c \
$(GETOPT_FILES) \
$(TIMER_FILES) \
$(XIO_FILES)
EXTRA_DIST = \
cfgfile.h \
framecode.h \
getopt.h \
iodir.h \
libtc.h \
optstr.h \
ratiocodes.h \
static_xio.h \
static_optstr.h \
static_tclist.h \
static_tctimer.h \
tc_lzo.h \
tcavcodec.h \
tccodecs.h \
tcformats.h \
tcframes.h \
tcglob.h \
tclist.h \
tcmodule-core.h \
tcmodule-data.h \
tcmodule-info.h \
tcmodule-plugin.h \
tctimer.h \
xio.h
|