File: Makefile.am

package info (click to toggle)
autoconf-archive 20180313-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,144 kB
  • sloc: sh: 695; python: 62; makefile: 49
file content (49 lines) | stat: -rw-r--r-- 2,333 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Build and install the GNU Autoconf Archive.
#
# Copyright (c) 2015 Autoconf Archive Maintainers <autoconf-archive-maintainers@gnu.org>
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <https://www.gnu.org/licenses/>.

SUBDIRS                 = doc

dist_pkgdata_DATA       = AUTHORS COPYING COPYING.EXCEPTION README
aclocaldir              = $(datadir)/aclocal
dist_aclocal_DATA       = $(M4FILES)
EXTRA_DIST              = build-aux/git-version-gen build-aux/gitlog-to-changelog

clean-local:
	@rm -rf $(srcdir)/stage $(srcdir)/macro.pyc __pycache__
	@rm -f $(DIST_ARCHIVES)

maintainer-clean-local:
	@rm -rf $(srcdir)/build-aux
	@rm -f configure Makefile.in aclocal.m4 AUTHORS ChangeLog
	@rm -f INSTALL config.log config.status configure maint.mk
	@rm -f autoconf-archive-*.*.*.tar.* GNUmakefile README

dist-hook:
	echo $(VERSION) > $(distdir)/.tarball-version
	if test -d .git; then												\
	  echo > $(distdir)/cl-t '# Copyright (c) 2014 Autoconf Archive Maintainers <autoconf-archive-maintainers@gnu.org>'; \
	  echo >>$(distdir)/cl-t '#';											\
	  echo >>$(distdir)/cl-t '# Copying and distribution of this file, with or without modification, are';		\
	  echo >>$(distdir)/cl-t '# permitted in any medium without royalty provided the copyright notice and';		\
	  echo >>$(distdir)/cl-t '# this notice are preserved. This file is offered as-is, without any warranty.';	\
	  echo >>$(distdir)/cl-t '';											\
	  $(top_srcdir)/build-aux/gitlog-to-changelog >>$(distdir)/cl-t -- master $(top_srcdir)/m4;			\
	  rm -f $(distdir)/ChangeLog;											\
	  mv $(distdir)/cl-t $(distdir)/ChangeLog;									\
	  $(top_srcdir)/gen-authors.sh >$(distdir)/au-t;								\
	  rm -f $(distdir)/AUTHORS;											\
	  mv $(distdir)/au-t $(distdir)/AUTHORS;									\
	fi