File: Makefile.am

package info (click to toggle)
gupnp-tools 0.8.13-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,744 kB
  • ctags: 726
  • sloc: ansic: 7,518; sh: 4,712; makefile: 247; xml: 164; sed: 16
file content (26 lines) | stat: -rw-r--r-- 845 bytes parent folder | download
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
ACLOCAL_AMFLAGS=-I m4 ${ACLOCAL_FLAGS}
SUBDIRS = src data po

# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub configure depcomp install-sh ltmain.sh Makefile.in missing config.h.in

DISTCLEANFILES = \
	intltool-extract \
	intltool-merge \
	intltool-update

EXTRA_DIST = build-aux/config.rpath

dist-hook:
	@if test -d "$(srcdir)/.git"; \
		then \
				echo Creating ChangeLog && \
				( cd "$(top_srcdir)" && \
				  echo '# Generated by Makefile. Do not edit.'; echo; \
				  "$(top_srcdir)"/build-aux/missing --run git log --stat ) > ChangeLog.tmp \
				&& mv -f ChangeLog.tmp $(distdir)/ChangeLog \
				|| ( rm -f ChangeLog.tmp ; \
					 echo Failed to generate ChangeLog >&2 ); \
		else \
				echo A git clone is required to generate a ChangeLog >&2; \
		fi