summaryrefslogtreecommitdiffstats
path: root/src/gui-wizard-gtk/Makefile.am
blob: c199ad01157f357f0eadce6875349e77ed234a6e (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
bin_PROGRAMS = bug-reporting-wizard

bug_reporting_wizard_SOURCES = \
    wizard.h wizard.c \
    main.c

#-Wl,--export-dynamic and lgmodule-2.0
#is required for gtk_builder_connect_signals() to work correctly
bug_reporting_wizard_CFLAGS = \
    -I$(srcdir)/../include/report -I$(srcdir)/../include \
    -I$(srcdir)/../lib \
    -DBIN_DIR=\"$(bindir)\" \
    -DVAR_RUN=\"$(VAR_RUN)\" \
    -DCONF_DIR=\"$(CONF_DIR)\" \
    -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
    -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \
    -DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \
    -DICON_DIR=\"${datadir}/abrt/icons/hicolor/48x48/status\" \
    $(GTK_CFLAGS) \
    -D_GNU_SOURCE \
    -g \
    -Wl,--export-dynamic \
    -Wall -Werror

bug_reporting_wizard_LDADD = \
    ../lib/libreport.la \
    ../lib/libabrt_dbus.la \
    -lglib-2.0 \
    -lgthread-2.0 \
    -lgmodule-2.0 \
    $(GTK_LIBS)

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

@INTLTOOL_DESKTOP_RULE@