diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-06-08 17:27:42 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-06-08 17:27:42 +0200 |
| commit | 0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e (patch) | |
| tree | b1249b7b96c908931f2c29f48f016da8be450429 /libreport/src/report-python/Makefile.am | |
| parent | 7ac32c68dea1fe0c6efa6ac9bb0e8ad8716d7f7d (diff) | |
| download | abrt-0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e.tar.gz abrt-0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e.tar.xz abrt-0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e.zip | |
split libreport to a separate package
Diffstat (limited to 'libreport/src/report-python/Makefile.am')
| -rw-r--r-- | libreport/src/report-python/Makefile.am | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/libreport/src/report-python/Makefile.am b/libreport/src/report-python/Makefile.am new file mode 100644 index 00000000..c1b37596 --- /dev/null +++ b/libreport/src/report-python/Makefile.am @@ -0,0 +1,43 @@ +pyreportexecdir = $(pyexecdir)/report + +pyreportexec_PYTHON = \ + __init__.py \ + accountmanager.py + +pyreportexec_LTLIBRARIES = _pyreport.la + +_pyreport_la_SOURCES = \ + reportmodule.c \ + problem_data.c \ + dump_dir.c \ + run_event.c \ + report.c \ + 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 \ + -Wall -Wwrite-strings -Werror +_pyreport_la_LDFLAGS = \ + -module \ + -avoid-version \ + -export-symbols-regex init_pyreport +_pyreport_la_LIBADD = \ + ../lib/libreport.la + +# report compat: + +pyreportioexecdir = $(pyexecdir)/report/io + +pyreportioexec_PYTHON = \ + io/__init__.py \ + io/GTKIO.py \ + io/NewtIO.py \ + io/TextIO.py |
