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
|
plugin_name = errorchecking
pluginlibdir = $(PACKAGE_PLUGIN_LIB_DIR)/actions
plugindescriptiondir = $(PACKAGE_PLUGIN_DESCRIPTION_DIR)/actions
actionplugindevdir = plugins/actions/$(plugin_name)
uidir = $(PACKAGE_PLUGIN_SHARE_DIR)/$(plugin_name)
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/src \
$(SUBTITLEEDITOR_CFLAGS) \
-DSE_PLUGIN_PATH_DEV=\"$(actionplugindevdir)\" \
-DSE_PLUGIN_PATH_UI=\"$(uidir)\"
pluginlib_LTLIBRARIES = \
liberrorchecking.la
liberrorchecking_la_SOURCES = \
errorchecking.h \
errorcheckingplugin.cc \
errorcheckingpreferences.h \
maxcharactersperline.h \
maxcharacterspersecond.h \
maxlinepersubtitle.h \
mincharacterspersecond.h \
mindisplaytime.h \
mingapbetweensubtitles.h \
overlapping.h
liberrorchecking_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
liberrorchecking_la_LIBADD = $(SUBTITLEEDITOR_LIBS) -L$(top_srcdir)/src -lsubtitleeditor
plugindescription_in_files = errorchecking.se-plugin.in
plugindescription_DATA = $(plugindescription_in_files:.se-plugin.in=.se-plugin)
@INTLTOOL_SE_PLUGIN_RULE@
ui_DATA = \
dialog-error-checking.ui \
dialog-error-checking-preferences.ui
EXTRA_DIST = $(plugindescription_in_files) $(ui_DATA)
CLEANFILES = $(plugindescription_DATA) Makefile.am~ *.cc~ *.h~ *.ui~ *.uip *.uip.bak *.in~
|