]> icculus.org git repositories - dana/obconf.git/blob - Makefile.am
add strings.c that glade generates
[dana/obconf.git] / Makefile.am
1 SUBDIRS = po
2
3 localedir       = $(datadir)/locale
4 gladedir        = $(datadir)/obconf
5 pixmapdir       = $(datadir)/pixmaps
6 themedir        = $(datadir)/openbox/themes
7 desktopdir      = $(datadir)/applications
8
9 AUTOMAKE_OPTIONS = subdir-objects
10 ACLOCAL_AMFLAGS = -I m4
11
12 bin_PROGRAMS = \
13         src/obconf
14
15 src_obconf_CPPFLAGS = \
16         $(OBLIBS_CFLAGS) \
17         $(STARTUP_CFLAGS) \
18         $(GTK_CFLAGS) \
19         $(GLADE_CFLAGS) \
20         $(GDK_PIXBUF_CFLAGS) \
21         $(XML_CFLAGS) \
22         -DLOCALEDIR=\"$(localedir)\" \
23         -DPIXMAPDIR=\"$(pixmapdir)\" \
24         -DGLADEDIR=\"$(gladedir)\" \
25         -DTHEMEDIR=\"$(themedir)\" \
26         -DG_LOG_DOMAIN=\"Obconf\"
27 src_obconf_LDADD = \
28         $(OBLIBS_LIBS) \
29         $(STARTUP_LIBS) \
30         $(GTK_LIBS) \
31         $(GLADE_LIBS) \
32         $(GDK_PIXBUF_LIBS) \
33         $(LIBINTL)
34 src_obconf_SOURCES = \
35         src/gettext.h \
36         src/main.c \
37         src/main.h \
38         src/handlers.c \
39         src/handlers.h \
40         src/tree.c \
41         src/tree.h
42
43 dist_glade_DATA = \
44         src/obconf.glade
45
46 dist_noinst_DATA = \
47         src/obconf.gladep
48
49 dist_desktop_DATA = \
50         obconf.desktop
51
52 EXTRA_DIST = \
53         config.rpath \
54         mkinstalldirs \
55         README \
56         COPYING \
57         AUTHORS \
58         m4/codeset.m4 \
59         m4/gettext.m4 \
60         m4/glibc21.m4 \
61         m4/iconv.m4 \
62         m4/intdiv0.m4 \
63         m4/inttypes-pri.m4 \
64         m4/inttypes.m4 \
65         m4/inttypes_h.m4 \
66         m4/isc-posix.m4 \
67         m4/lcmessage.m4 \
68         m4/lib-ld.m4 \
69         m4/lib-link.m4 \
70         m4/lib-prefix.m4 \
71         m4/nls.m4 \
72         m4/po.m4 \
73         m4/progtest.m4 \
74         m4/stdint_h.m4 \
75         m4/uintmax_t.m4 \
76         m4/ulonglong.m4 \
77         debian/changelog.in \
78         debian/compat \
79         debian/control \
80         debian/menu \
81         debian/rules \
82         config.rpath
83