1SUBDIRS = xpm
2
3bin_PROGRAMS = xgnokii
4
5AM_CFLAGS = \
6	$(PTHREAD_CFLAGS) \
7	$(GTK_CFLAGS) -DGTK_ENABLE_BROKEN \
8	-DLOCALEDIR=\"$(localedir)\"
9
10xgnokii_LDADD = \
11	$(PTHREAD_LIBS) $(GTK_LIBS) $(INTLLIBS) \
12	$(top_builddir)/common/libgnokii.la $(top_builddir)/common/data/libDATA.la
13xgnokii_CFLAGS = -I$(top_srcdir)/include $(AM_CFLAGS)
14
15xgnokii_SOURCES = \
16	xgnokii.c \
17	xgnokii_common.c \
18	xgnokii_contacts.c \
19	xgnokii_sms.c \
20	xgnokii_netmon.c \
21	xgnokii_dtmf.c \
22	xgnokii_cfg.c \
23	xgnokii_speed.c \
24	xgnokii_xkeyb.c \
25	xgnokii_calendar.c \
26	xgnokii_logos.c \
27	xgnokii_xring.c \
28	xgnokii_lowlevel.c \
29	xgnokii_data.c \
30	xgnokii_calendar.h \
31	xgnokii_cfg.h \
32	xgnokii_common.h \
33	xgnokii_contacts.h \
34	xgnokii_data.h \
35	xgnokii_dtmf.h \
36	xgnokii.h \
37	xgnokii_logos.h \
38	xgnokii_lowlevel.h \
39	xgnokii_netmon.h \
40	xgnokii_sms.h \
41	xgnokii_speed.h \
42	xgnokii_xkeyb.h \
43	xgnokii_xring.h
44
45pkgconfig_DATA = xgnokii.pc
46pkgconfigdir = $(libdir)/pkgconfig
47
48desktop_in_files = xgnokii.desktop.in
49desktopdir = $(datadir)/applications
50desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
51@INTLTOOL_DESKTOP_RULE@
52
53CLEANFILES = $(desktop_DATA)
54
55EXTRA_DIST = xgnokii.pc.in $(desktop_in_files) README.vcard
56