aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 498b5ced719c2dfdb18d0176493eb609cb42f21b (plain) (blame)
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
## Process this file with automake to produce Makefile.in

SUBDIRS = contrib doc po src pixmaps

desktopdir = $(datadir)/applications
desktop_in_files = \
  gnunet-fs-gtk.desktop.in \
  gnunet-setup.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)

pkgpixdir= $(pkgdatadir)

ACLOCAL_AMFLAGS = -I m4

IMAGES = \
 gnunet-setup-oxygen-cancel.png \
 gnunet-setup-oxygen-ok.png 

install-data-local:
	@$(NORMAL_INSTALL)
	$(mkinstalldirs) $(DESTDIR)$(pkgpixdir)
	for pixmap in $(IMAGES); do \
	  if test -f $$pixmap; then \
	    $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgpixdir); \
	  fi \
	done

EXTRA_DIST = \
  config.rpath  \
  install-sh mkinstalldirs \
  $(IMAGES)