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
|
pluginlibdir = $(PACKAGE_PLUGIN_LIB_DIR)/actions
plugindescriptiondir = $(PACKAGE_PLUGIN_DESCRIPTION_DIR)/actions
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/src \
$(SUBTITLEEDITOR_CFLAGS)
pluginlib_LTLIBRARIES = \
libcommand.la
libcommand_la_SOURCES = \
command.cc
libcommand_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libcommand_la_LIBADD = $(SUBTITLEEDITOR_LIBS) -L$(top_srcdir)/src -lsubtitleeditor
plugindescription_in_files = command.se-plugin.in
plugindescription_DATA = $(plugindescription_in_files:.se-plugin.in=.se-plugin)
@INTLTOOL_SE_PLUGIN_RULE@
EXTRA_DIST = $(plugindescription_in_files)
CLEANFILES = $(plugindescription_DATA) Makefile.am~ *.cc~ *.h~ *.in~
|