File: Makefile.am

package info (click to toggle)
transcode 3%3A1.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,644 kB
  • sloc: ansic: 116,927; sh: 11,468; xml: 2,849; makefile: 1,891; perl: 1,492; pascal: 526; php: 191; python: 144; sed: 43
file content (57 lines) | stat: -rw-r--r-- 929 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
# # Process this file with automake to produce Makefile.in.

AM_CPPFLAGS = \
	$(PTHREAD_CFLAGS) \
	-I$(top_srcdir) \
	-I$(top_srcdir)/src \
	$(X_CFLAGS) \
	$(FREETYPE2_CFLAGS) \
	$(ICONV_CFLAGS)

pkgdir = $(MOD_PATH)

pkg_LTLIBRARIES = filter_subtitler.la

filter_subtitler_la_SOURCES = \
	filter_subtitler.c \
	color_processor.c \
	external_programs.c \
	frame_list.c \
	load_font.c \
	load_pictures.c \
	load_ppml_file.c \
	object_list.c \
	parser.c \
	text_processing.c \
	x11.c

filter_subtitler_la_LDFLAGS = -module -avoid-version

filter_subtitler_la_LIBADD = \
	$(X_LIBS) \
	$(X_PRE_LIBS) \
	-lXext \
	-lX11 \
	$(X_EXTRA_LIBS) \
	-lXpm \
	-lXaw \
	-lXt \
	-lm \
	$(FREETYPE2_LIBS) \
	$(ICONV_LIBS)

EXTRA_DIST = \
	CHANGES \
	HOWTO_USE_THIS \
	LICENSE \
	README.COLOR.PROCESSOR \
	README.PPML \
	demo.ppml \
	frame_list.h \
	load_font.h \
	object_list.h \
	rose.ppm \
	subtitler.h \
	subtitler_proto.h \
	sun.ppm \
	x11.h