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
|
## Process this file with automake to produce Makefile.in
SUBDIRS = DI_GreedyH DI_Misc test
plugindir = @PLUGIN_DEFAULT_DIR@
plugin_LTLIBRARIES = libdeinterlace.zapping.la
AM_CFLAGS = \
@PLUGIN_DEFAULT_FLAGS@ \
-DZAPPING8
INCLUDES = \
-I$(top_srcdir) \
@COMMON_INCLUDES@
libdeinterlace_zapping_la_SOURCES = \
DS_ApiCommon.h \
DS_Control.h \
DS_Deinterlace.h \
main.c main.h \
preferences.c preferences.h \
windows.h
libdeinterlace_zapping_la_LDFLAGS = -module -avoid-version
libdeinterlace_zapping_la_LIBADD = \
DI_GreedyH/libDI_GreedyH.la \
DI_Misc/libDI_Misc.la \
$(PACKAGE_LIBS)
|