~noskcaj/ubuntu/vivid/gnome-system-monitor/titlebars

1 by Loic Minier
Import upstream version 2.8.1
1
## Process this file with automake to produce Makefile.in
2
3
SUBDIRS = po src help
4
5
EXTRA_DIST = \
6
	gnome-system-monitor.desktop.in \
7
	gnome-system-monitor.spec \
8
	intltool-extract.in \
9
	intltool-merge.in \
10
	intltool-update.in \
11
	HACKING \
12
	omf.make \
13
	xmldocs.make
14
15
Applicationsdir = $(datadir)/applications
16
Applications_in_files = gnome-system-monitor.desktop.in
17
Applications_DATA = $(Applications_in_files:.desktop.in=.desktop)
18
@INTLTOOL_DESKTOP_RULE@
19
20
install-data-local:
21
	@$(NORMAL_INSTALL)
22
	if test -d $(srcdir)/pixmaps; then \
23
	  $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
24
	  for pixmap in $(srcdir)/pixmaps/*; do \
25
	    if test -f $$pixmap; then \
26
	      $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
27
	    fi \
28
	  done \
29
	fi
30
31
dist-hook:
32
	if test -d pixmaps; then \
33
	  mkdir $(distdir)/pixmaps; \
34
	  for pixmap in pixmaps/*; do \
35
	    if test -f $$pixmap; then \
36
	      cp -p $$pixmap $(distdir)/pixmaps; \
37
	    fi \
38
	  done \
39
	fi
40