File: Makefile.am

package info (click to toggle)
xpenguins-applet 2.1.1-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,228 kB
  • ctags: 371
  • sloc: ansic: 3,989; sh: 3,792; xml: 457; makefile: 145
file content (42 lines) | stat: -rw-r--r-- 1,145 bytes parent folder | download | duplicates (5)
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
SUBDIRS = po src doc

EXTRA_DIST = config.rpath  \
    COPYING-DOCS \
    $(intltools) \
    $(server_in_files).in \
    $(pixmap_DATA) \
    $(schemas_DATA) \
    $(ui_DATA)

intltools = intltool-extract.in intltool-merge.in intltool-update.in

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

pixmapdir = $(datadir)/pixmaps
pixmap_DATA = gnome-xpenguins.png

schemasdir = @GCONF_SCHEMA_FILE_DIR@
schemas_in_files = $(PACKAGE).schemas.in
schemas_DATA     = $(schemas_in_files:.schemas.in=.schemas)

@INTLTOOL_SCHEMAS_RULE@

serverdir = $(libdir)/bonobo/servers
server_in_files = $(PACKAGE).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|\@PIXMAPDIR\@|$(pixmapdir)|" $< > $@

@INTLTOOL_SERVER_RULE@


# don't do this if we are building in eg. rpm or .deb
install-data-local:
	if test "$(GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL)" != "1"; then \
		for p in $(schemas_DATA) ; do \
			GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/$$p ; \
		done \
	fi