]> git.itanic.dy.fi Git - maemo-mapper/blob - Makefile.am
Initial import of the maemo-mapper project.
[maemo-mapper] / Makefile.am
1 # The icons
2
3 icondir = $(datadir)/icons/hicolor
4
5 install-data-local:
6         i=pkg_maemo-mapper; \
7         $(mkinstalldirs) $(DESTDIR)$(icondir)/26x26/hildon; \
8         $(mkinstalldirs) $(DESTDIR)$(icondir)/40x40/hildon; \
9         $(mkinstalldirs) $(DESTDIR)$(icondir)/scalable/hildon; \
10         $(INSTALL_DATA) $(srcdir)/$$i.26.png $(DESTDIR)$(icondir)/26x26/hildon/$$i.png; \
11         $(INSTALL_DATA) $(srcdir)/$$i.40.png $(DESTDIR)$(icondir)/40x40/hildon/$$i.png; \
12         $(INSTALL_DATA) $(srcdir)/$$i.64.png $(DESTDIR)$(icondir)/scalable/hildon/$$i.png;
13
14 uninstall-local:
15         i=pkg_maemo-mapper; \
16         rm $(DESTDIR)$(icondir)/26x26/hildon/$$i.png; \
17         rm $(DESTDIR)$(icondir)/40x40/hildon/$$i.png; \
18         rm $(DESTDIR)$(icondir)/scalable/hildon/$$i.png;
19
20 # The program
21
22 bin_PROGRAMS = maemo-mapper
23
24 maemo_mapper_SOURCES = maemo-mapper.c
25 maemo_mapper_CFLAGS = $(GTK_CFLAGS) $(OSSO_CFLAGS) $(HILDON_CFLAGS) $(GNOME_VFS_CFLAGS) $(GCONF_CFLAGS) $(LIBXML2_CFLAGS)
26 maemo_mapper_LDADD = $(GTK_LIBS) $(OSSO_LIBS) $(HILDON_LIBS) $(GNOME_VFS_LIBS) $(GCONF_LIBS) $(LIBXML2_LIBS) -lbluetooth
27
28 desktopdir = $(datadir)/applications/hildon
29 desktop_DATA = maemo-mapper.desktop
30
31 servicedir = $(libdir)/dbus-1.0/services
32 service_DATA = com.nokia.maemo_mapper.service
33
34 # The shared library
35
36 # The control panel applet
37
38 # The status bar plugin
39
40 # The Home plugin
41
42 # The locale
43
44 # The gstreamer plugin
45
46 # The backup/restore configuration
47
48 EXTRA_DIST =                                    \
49         autogen.sh                              \
50         debian/changelog                        \
51         debian/compat                           \
52         debian/copyright                        \
53         debian/control                          \
54         debian/rules                            \
55         debian/maemo-mapper.links               \
56         maemo-mapper.desktop                    \
57         com.nokia.maemo_mapper.service  \
58         pkg_maemo-mapper.26.png         \
59         pkg_maemo-mapper.40.png         \
60         pkg_maemo-mapper.64.png