File: Makefile.am

package info (click to toggle)
gnumeric 1.4.3-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 71,576 kB
  • ctags: 28,555
  • sloc: ansic: 282,333; xml: 45,788; sh: 8,479; makefile: 3,119; yacc: 1,129; lisp: 200; perl: 173; python: 86
file content (39 lines) | stat: -rw-r--r-- 1,103 bytes parent folder | download
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
INCLUDES = \
    -DPLUGIN_ID=\"Gnumeric_PythonLoader\"		\
    -DGNOMELOCALEDIR=\""$(datadir)/locale"\" 	\
    -I$(top_srcdir)/src	-I$(top_builddir)/src	\
    $(PY_CFLAGS)				\
    $(PYGTK_CFLAGS)				\
    $(GNUMERIC_CFLAGS)

gnumeric_plugin_python_loaderdir = $(gnumeric_plugindir)/python-loader
xmldir = $(gnumeric_plugin_python_loaderdir)
gnumeric_plugin_python_loader_LTLIBRARIES = python_loader.la
gnumeric_plugin_python_loader_DATA = ui-console-menu.xml

python_loader_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS) $(PY_LIB_LOC)  
python_loader_la_LIBADD = -l$(PY_LIBS) $(PY_EXTRA_LIBS)
python_loader_la_SOURCES = \
	python-loader.h \
	python-loader.c \
	gnm-python.h \
	gnm-python.c \
	gnm-py-interpreter.h \
	gnm-py-interpreter.c \
	py-gnumeric.h \
	py-gnumeric.c \
	py-interpreter-selector.c \
	py-interpreter-selector.h \
	py-command-line.c \
	py-command-line.h \
	py-console.c \
	py-console.h \
	boot.c

xml_in_files = plugin.xml.in
xml_DATA = $(xml_in_files:.xml.in=.xml)

@INTLTOOL_XML_RULE@

EXTRA_DIST = $(xml_in_files) $(gnumeric_plugin_python_loader_DATA)
DISTCLEANFILES = $(xml_DATA)