summaryrefslogtreecommitdiffstats
path: root/src/report-python/Makefile.am
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-12-14 13:56:07 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-12-14 13:56:07 +0100
commit8598b22e101201de4d06ea48f2b500f81f2b30d5 (patch)
tree16a7ff27a1f52cf91f6ea0a1f1d36e87d4e0d021 /src/report-python/Makefile.am
parent529935edd6733438531232b28174541ca6f92692 (diff)
downloadabrt-8598b22e101201de4d06ea48f2b500f81f2b30d5.tar.gz
abrt-8598b22e101201de4d06ea48f2b500f81f2b30d5.tar.xz
abrt-8598b22e101201de4d06ea48f2b500f81f2b30d5.zip
a stub for report-python
Diffstat (limited to 'src/report-python/Makefile.am')
-rw-r--r--src/report-python/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/report-python/Makefile.am b/src/report-python/Makefile.am
new file mode 100644
index 00000000..34ec090c
--- /dev/null
+++ b/src/report-python/Makefile.am
@@ -0,0 +1,25 @@
+pyreportexecdir = $(pyexecdir)/report
+
+pyreportexec_PYTHON = __init__.py
+
+pyreportexec_LTLIBRARIES = _pyreport.la
+
+_pyreport_la_SOURCES = \
+ reportmodule.c crash_dump.c py_crash_dump.h pyreport_common.h
+_pyreport_la_CPPFLAGS = \
+ -I$(srcdir)/../include/report -I$(srcdir)/../include \
+ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
+ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \
+ -DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \
+ -DLOCALSTATEDIR='"$(localstatedir)"' \
+ -DCONF_DIR=\"$(CONF_DIR)\" \
+ -DVAR_RUN=\"$(VAR_RUN)\" \
+ $(GLIB_CFLAGS) \
+ $(PYTHON_CFLAGS) \
+ -D_GNU_SOURCE
+_pyreport_la_LDFLAGS = \
+ -module \
+ -avoid-version \
+ -export-symbols-regex init_pyreport
+_pyreport_la_LIBADD = \
+ ../lib/libreport.la