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
|
AUTOMAKE_OPTIONS=no-dependencies
AM_CPPFLAGS = \
-I../.. \
-DPLUGIN_ID=\"Gnumeric_PerlLoader\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-I$(top_srcdir)/src -I$(top_builddir)/src
gnumeric_plugin_perl_loaderdir = $(gnumeric_plugindir)/perl-loader
xmldir = $(gnumeric_plugin_perl_loaderdir)
gnumeric_plugin_perl_loader_LTLIBRARIES = perl_loader.la
perl_loader_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS) $(PERL_LDDLFLAGS)
perl_loader_la_LIBADD = $(PERL_LDOPTS) $(GTK_LIBS)
perl_loader_la_SOURCES = \
boot.c \
perl-loader.c \
perl-loader.h \
perl-gnumeric.h \
perl-gnumeric.c
nodist_perl_loader_la_SOURCES = \
xsinit.c
# Use the right compiler. This is not 100% correct: we use GNUMERIC_CFLAGS
# here which might contain stuff we don't like. It looks good enough,
# though.
dist_noinst_SCRIPTS=perl-cc-wrapper
COMPILE=$(PERL) $(srcdir)/perl-cc-wrapper $(PERL_CC) $(PERL_CCOPTS) \
$(PERL_CCCDLFLAGS) $(AM_CPPFLAGS) --sanitize=1 $(GNUMERIC_CFLAGS)
LTCOMPILE=$(LIBTOOL) --tag=CC --mode=compile $(COMPILE)
xsinit.c:
$(PERL) -MExtUtils::Embed -e xsinit -- -o xsinit.c
xml_in_files = plugin.xml.in
xml_DATA = $(xml_in_files:.xml.in=.xml)
@INTLTOOL_XML_RULE@
EXTRA_DIST = $(xml_in_files)
DISTCLEANFILES = $(xml_DATA) xsinit.c
|