diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-12-14 13:56:07 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-12-14 13:56:07 +0100 |
| commit | 8598b22e101201de4d06ea48f2b500f81f2b30d5 (patch) | |
| tree | 16a7ff27a1f52cf91f6ea0a1f1d36e87d4e0d021 /src/report-python/Makefile.am | |
| parent | 529935edd6733438531232b28174541ca6f92692 (diff) | |
| download | abrt-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.am | 25 |
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 |
