blob: e7031edb350fe1c81e13cf5d22fb3e9f316fb0eb (
plain)
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
|
bin_SCRIPTS = gnome-about
gnome-about: gnome-about.in Makefile
sed \
-e s!\@PYTHON\@!@PYTHON@! \
-e s!\@GETTEXT_PACKAGE\@!@GETTEXT_PACKAGE@! \
-e s!\@LOCALEDIR\@!$(datadir)/locale! \
-e s!\@DATADIR\@!$(datadir)/gnome-about! \
-e s!\@ICONDIR\@!$(datadir)/pixmaps! \
-e s!\@PACKAGE_NAME\@!$(PACKAGE_NAME)! \
-e s!\@PACKAGE_VERSION\@!$(PACKAGE_VERSION)! \
< $< > $@
chmod a+x $@
@INTLTOOL_DESKTOP_RULE@
desktopdir = $(datadir)/applications
desktop_in_files = gnome-about.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
aboutdir = $(datadir)/gnome-about
about_DATA = gnome-64.png contributors.list foundation-members.list
EXTRA_DIST = $(about_DATA) gnome-about.in
SUBDIRS = headers
CLEANFILES = gnome-about.desktop gnome-about
check:
test -s $(top_srcdir)/gnome-about/foundation-members.list
|