~m-grant-prg/agmaint/bionic

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Mark Grant
  • Date: 2019-09-22 09:19:27 UTC
  • mfrom: (1.1.24)
  • Revision ID: m.grant.prg@gmail.com-20190922091927-njwuvd39ainpj3hw
Merge new upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env bash
2
1
#########################################################################
3
2
#                                                                       #
4
3
# Script ID: ./Makefile.am                                              #
5
 
# Author: Copyright (C) 2014-2018  Mark Grant                           #
 
4
# Author: Copyright (C) 2014-2019  Mark Grant                           #
6
5
#                                                                       #
7
6
# Released under the GPLv3 only.                                        #
8
7
# SPDX-License-Identifier: GPL-3.0                                      #
34
33
# 31/10/2018    MG      1.0.9   Change srctarball target to build with  #
35
34
#                               src between package name and version in #
36
35
#                               filename.                               #
 
36
# 22/09/2019    MG      1.0.10  Change source tarball name to be the    #
 
37
#                               same as that in GitHub releases. This   #
 
38
#                               aids integrating with rpm generation.   #
 
39
#                               Add install of standard GNU files like  #
 
40
#                               AUTHORS, etc.                           #
 
41
#                               Remove shebang.                         #
 
42
#                               Add standard AMFLAGS statement.         #
 
43
#                               To enable make distcheck to work, any   #
 
44
#                               hard-coded paths requiring permissions  #
 
45
#                               such as /etc or fixed locations such as #
 
46
#                               /usr/share/java must be accommodated,   #
 
47
#                               so set the configure flags to be used   #
 
48
#                               by make distcheck.                      #
37
49
#                                                                       #
38
50
#########################################################################
39
51
 
40
52
 
 
53
ACLOCAL_AMFLAGS = -I m4
 
54
 
 
55
 
 
56
AM_DISTCHECK_CONFIGURE_FLAGS =
 
57
 
 
58
 
41
59
SUBDIRS = src/prg/bash src/man/8
42
60
 
 
61
 
 
62
doc_DATA = AUTHORS ChangeLog COPYING NEWS README
 
63
 
 
64
 
 
65
EXTRA_DIST = $(srcdir)/AUTHORS $(srcdir)/ChangeLog $(srcdir)/COPYING \
 
66
                $(srcdir)/NEWS $(srcdir)/README
 
67
 
 
68
 
43
69
srctarball:
44
70
        @cwd="$${PWD}" && \
45
 
        targ="$${cwd}/@PACKAGE_TARNAME@-src-@PACKAGE_VERSION@.tar.gz" && \
 
71
        targ="$${cwd}/@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz" && \
46
72
        cd @srcdir@ && \
47
73
        echo "making srctarball from @srcdir@" && \
48
74
        echo "GA        $${targ}" && \