File: Makefile.am

package info (click to toggle)
gnumeric 1.10.8-1squeeze5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 90,968 kB
  • ctags: 23,303
  • sloc: ansic: 248,235; xml: 51,894; sh: 10,491; makefile: 2,822; perl: 2,466; yacc: 1,272; python: 205
file content (38 lines) | stat: -rw-r--r-- 1,029 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
AM_CPPFLAGS = \
    -DPLUGIN_ID=\"Gnumeric_PythonLoader\"		\
    -DGNOMELOCALEDIR=\""$(datadir)/locale"\" 	\
    -I$(top_srcdir)/src	-I$(top_builddir)/src	\
    $(GNM_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

python_loader_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS) $(GNM_PY_LDFLAGS)  
python_loader_la_LIBADD = $(GNM_PY_LIBADD)
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 ui-console-menu.xml.in
xml_DATA = $(xml_in_files:.xml.in=.xml)

@INTLTOOL_XML_RULE@

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