File: Makefile.am

package info (click to toggle)
transcode 3%3A1.1.7-9
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,468 kB
  • ctags: 14,721
  • sloc: ansic: 117,006; sh: 11,468; xml: 2,849; makefile: 1,898; perl: 1,492; pascal: 526; php: 191; python: 144; sed: 43
file content (65 lines) | stat: -rw-r--r-- 968 bytes parent folder | download | duplicates (2)
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