aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 58cc6d18c8369f0b9c3fecec5f1814f8758d19a5 (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
32
33
34
35
36
37
38
39
# This Makefile.am is in the public domain
## 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 \
  gnunet-gtk.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)

pkgpixdir= $(pkgdatadir)


doc_DATA = COPYING README

ACLOCAL_AMFLAGS = -I m4

install-data-local:
	@$(NORMAL_INSTALL)
	$(mkinstalldirs) $(DESTDIR)$(pkgpixdir)

EXTRA_DIST = \
  config.rpath  \
  install-sh mkinstalldirs 

ChangeLog:
	if test -f $(top_srcdir)/.svn/entries; then \
		svn log -v --xml -r HEAD:18400 | \
			xsltproc --stringparam ignore-message-starting "-" \
				 --stringparam strip-prefix "gnunet-gtk" \
				 --stringparam include-rev "yes" $(top_srcdir)/contrib/svn2cl.xsl - > $@; \
	fi

dist: ChangeLog

.PHONY: ChangeLog