File: Makefile.am

package info (click to toggle)
contacts 0.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,884 kB
  • ctags: 196
  • sloc: sh: 8,867; ansic: 3,225; makefile: 53
file content (30 lines) | stat: -rw-r--r-- 840 bytes parent folder | download
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
uidir = $(pkgdatadir)
ui_DATA = contacts.glade

desktopdir = $(datadir)/applications
desktop_in_files = contacts.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

icondir = $(datadir)/pixmaps/
icon_DATA = oh-contacts.png

schemadir = $(GCONF_SCHEMA_FILE_DIR)
schema_DATA = contacts.schemas

if HAVE_GCONF
install-data-local:
	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
		$(GCONFTOOL) --makefile-install-rule $(schema_DATA) || \
		(echo ;\
		echo "*****************************************************"; \
		echo "Installation of schemas failed, install them manually"; \
		echo "*****************************************************";)
		@true
endif

CLEANFILES = $(desktop_DATA)

MAINTAINERCLEANFILES = Makefile.in

EXTRA_DIST = $(ui_DATA) $(desktop_in_files) $(icon_DATA) $(schema_DATA)