summaryrefslogtreecommitdiffstats
path: root/lib/Utils/Makefile.am
blob: 6847ab0a0c5b60d7631f1c7652e5fa151dff9e56 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# ABRTUtils has small set of deps. This reduces deps of smaller abrt binaries
# ABRTdUtils has much more. It is used by daemon and plugins only
lib_LTLIBRARIES = libABRTUtils.la libABRTdUtils.la

# Not used just yet:
# time.cpp
# xconnect.cpp

# removed: CrashTypesSocket.cpp
libABRTUtils_la_SOURCES = \
    xfuncs.cpp \
    encbase64.cpp \
    read_write.cpp \
    logging.cpp \
    copyfd.cpp \
    daemon.cpp \
    skip_whitespace.cpp \
    xatonum.cpp numtoa.cpp \
    spawn.cpp \
    stringops.cpp \
    dirsize.cpp \
    DebugDump.h DebugDump.cpp \
    abrt_dbus.h abrt_dbus.cpp \
    CrashTypes.cpp \
    ABRTException.cpp
libABRTUtils_la_CPPFLAGS = \
    -Wall -Werror \
    -I$(srcdir)/../../inc \
    -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
    -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \
    -DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \
    -DCONF_DIR=\"$(CONF_DIR)\" \
    -DVAR_RUN=\"$(VAR_RUN)\" \
    $(GLIB_CFLAGS) \
    $(DBUS_CFLAGS) \
    -D_GNU_SOURCE
libABRTUtils_la_LDFLAGS = \
    -version-info 0:1:0
libABRTUtils_la_LIBADD = \
    $(GLIB_LIBS) \
    $(DBUS_LIBS)


libABRTdUtils_la_SOURCES = \
    parse_release.cpp \
    make_descr.cpp \
    CommLayerInner.h CommLayerInner.cpp \
    abrt_xmlrpc.h abrt_xmlrpc.cpp \
    Plugin.h Plugin.cpp \
    Polkit.h Polkit.cpp \
    Action.h Database.h Reporter.h Analyzer.h \
    Observer.h \
    DBusCommon.h
libABRTdUtils_la_CPPFLAGS = \
    -Wall -Werror \
    -I$(srcdir)/../../inc \
    -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
    -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \
    -DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \
    -DCONF_DIR=\"$(CONF_DIR)\" \
    -DVAR_RUN=\"$(VAR_RUN)\" \
    $(XMLRPC_CFLAGS) $(XMLRPC_CLIENT_CFLAGS) \
    $(POLKIT_CFLAGS) \
    -D_GNU_SOURCE
libABRTdUtils_la_LDFLAGS = \
    -version-info 0:1:0
libABRTdUtils_la_LIBADD = \
    $(XMLRPC_LIBS) $(XMLRPC_CLIENT_LIBS) \
    $(POLKIT_LIBS)


$(DESTDIR)/$(DEBUG_DUMPS_DIR):
	$(mkdir_p) '$@'
# no need to chmod it here
#chmod 1777 '$@'
install-data-local: $(DESTDIR)/$(DEBUG_DUMPS_DIR)