summaryrefslogtreecommitdiffstats
path: root/src/CLI/Makefile.am
blob: 361b64f713d74e6906e03224218f85d5fc39b687 (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
bin_PROGRAMS = abrt-cli

abrt_cli_SOURCES = \
    CLI.cpp \
    run-command.h run-command.cpp \
    report.h report.cpp \
    dbus.h dbus.cpp

abrt_cli_CPPFLAGS = \
    -I$(srcdir)/../../inc \
    -I$(srcdir)/../../lib/Utils \
    -DVAR_RUN=\"$(VAR_RUN)\" \
    $(ENABLE_SOCKET_OR_DBUS) \
    $(DBUS_CFLAGS) \
    -D_GNU_SOURCE
#    $(GTK_CFLAGS)

abrt_cli_LDADD = \
    ../../lib/Utils/libABRTUtils.la \
    ../../lib/Utils/libABRTdUtils.la

man_MANS = abrt-cli.1
EXTRA_DIST = $(man_MANS)

completiondir = $(sysconfdir)/bash_completion.d
dist_completion_DATA = abrt-cli.bash

DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@