File: Makefile.am

package info (click to toggle)
ontv 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,508 kB
  • ctags: 521
  • sloc: sh: 9,922; python: 2,880; makefile: 154; xml: 18
file content (74 lines) | stat: -rw-r--r-- 1,742 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
SUBDIRS = images

@INTLTOOL_DESKTOP_RULE@

desktop_in_files = ontv.desktop.in
desktop_files    = $(desktop_in_files:.desktop.in=.desktop)

desktopdir   = $(datadir)/applications
desktop_DATA = $(desktop_files)

@INTLTOOL_SCHEMAS_RULE@

if GCONF_SCHEMAS_INSTALL
install-data-local:
	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
	$(GCONFTOOL) --makefile-install-rule $(schema_DATA)
endif

serverdir       = $(libdir)/bonobo/servers
server_in_files = GNOME_OnTVApplet.server.in
server_DATA     = $(server_in_files:.server.in=.server)

$(server_in_files): $(server_in_files:.server.in=.server.in.in)
	sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|"	\
	    -e "s|\@DATADIR\@|$(datadir)|" < $< > $@

@INTLTOOL_SERVER_RULE@

gladedir   = $(datadir)/ontv
glade_DATA = 		      \
	about_dialog.ui       \
	channel_dialog.ui     \
	program_dialog.ui     \
	search_dialog.ui      \
	preferences_dialog.ui \
	status_icon.ui

uidir   = $(datadir)/gnome-2.0/ui
ui_DATA = GNOME_OnTVApplet.xml

$(schema_in_files): $(schema_in_files:.schemas.in=.schemas.in.in)
	sed -e "s|\@BINDIR\@|$(bindir)|" < $< > $@


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

xml_in_files = 90-ontv.xml.in

if CUSTOM_KEYBINDINGS
xmldir   = $(datadir)/gnome-control-center/keybindings
xml_DATA = $(xml_in_files:.xml.in=.xml)
endif

@INTLTOOL_XML_NOMERGE_RULE@

DISTCLEANFILES =		\
	$(schema_DATA)		\
	$(desktop_files)	\
	$(server_in_files)	\
	$(server_DATA)		\
	$(xml_in_files)		\
	$(xml_DATA)

EXTRA_DIST =				\
	ontv.schemas.in.in		\
	GNOME_OnTVApplet.server.in.in	\
	GNOME_OnTVApplet.xml		\
	$(glade_DATA)			\
	$(ui_DATA)			\
	$(desktop_in_files)		\
	$(schema_in_files)		\
	$(xml_in_files)