File: Makefile.am

package info (click to toggle)
last-exit 6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,016 kB
  • ctags: 2,153
  • sloc: cs: 11,354; sh: 9,253; makefile: 307; ansic: 198; xml: 12
file content (35 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (2)
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
SUBDIRS=glade icons ui

schema_in_files = last-exit.schemas.in		\
		  lastfm.schemas.in

schemadir = $(GCONF_SCHEMA_FILE_DIR)
schema_DATA = $(schema_in_files:.schemas.in=.schemas)

@INTLTOOL_SCHEMAS_RULE@

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

EXTRA_DIST =			\
	$(schema_in_files)	\
	$(desktop_in_files)	\
	$(svgicon_DATA)

DISTCLEANFILES =		\
	$(schema_DATA)		\
	$(desktop_DATA)

if GCONF_SCHEMAS_INSTALL
install-data-local:
	if test -z "$(DESTDIR)" ; then \
		for p in $(schema_DATA) ; do \
			GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p; \
		done \
	fi
else
install-data-local:
endif