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
|