blob: db2cb95776b4bcf563c2159ba9b5950eb5d98f2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
libexec_PROGRAMS = hookCCpp
# CCpp
hookCCpp_SOURCES = CCpp.cpp
hookCCpp_LDADD = ../../lib/Utils/libABRTUtils.la
hookCCpp_CPPFLAGS = -I$(srcdir)/../../inc -I$(srcdir)/../../lib/Utils \
-DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\"
python_PYTHON = sitecustomize.py abrt_exception_handler.py
pyhookconfdir = $(CONF_DIR)
dist_pyhookconf_DATA = pyhook.conf
CLEANFILES := $(notdir $(wildcard *~)) $(notdir $(wildcard *\#)) $(notdir $(wildcard \.\#*)) $(notdir $(wildcard *.pyc))
install-data-local:
sed s,@DEBUG_DUMP_DIR@,$(DEBUG_DUMPS_DIR),g abrt_exception_handler.py.in > abrt_exception_handler.py
|