~m-grant-prg/evolution-clamav/trunk

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Mark Grant
  • Date: 2020-02-11 15:30:34 UTC
  • Revision ID: m.grant.prg@gmail.com-20200211153034-19i7hgol1i5aiyg8
Tags: upstream-1.0.0+rc1
ImportĀ upstreamĀ versionĀ 1.0.0+rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#########################################################################
 
2
#                                                                       #
 
3
# Script ID: ./Makefile.am                                              #
 
4
# Author: Copyright (C) 2020  Mark Grant                                #
 
5
#                                                                       #
 
6
# Released under the GPLv3 only.                                        #
 
7
# SPDX-License-Identifier: GPL-3.0                                      #
 
8
#                                                                       #
 
9
# Purpose:                                                              #
 
10
# Automake script file to generate evolution-clamav project from source.#
 
11
#                                                                       #
 
12
#########################################################################
 
13
 
 
14
#########################################################################
 
15
#                                                                       #
 
16
# Changelog                                                             #
 
17
#                                                                       #
 
18
# Date          Author  Version Description                             #
 
19
#                                                                       #
 
20
# 11/02/2020    MG      1.0.1   Initial version.                        #
 
21
#                                                                       #
 
22
#########################################################################
 
23
 
 
24
 
 
25
ACLOCAL_AMFLAGS = -I m4
 
26
 
 
27
 
 
28
AM_DISTCHECK_CONFIGURE_FLAGS =
 
29
 
 
30
 
 
31
SUBDIRS = src/prg/bash src/man/1
 
32
 
 
33
 
 
34
doc_DATA = AUTHORS ChangeLog COPYING NEWS README
 
35
 
 
36
 
 
37
EXTRA_DIST = $(srcdir)/AUTHORS $(srcdir)/ChangeLog $(srcdir)/COPYING \
 
38
                $(srcdir)/NEWS $(srcdir)/README
 
39
 
 
40
 
 
41
srctarball:
 
42
        @cwd="$${PWD}" && \
 
43
        targ="$${cwd}/@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz" && \
 
44
        cd @srcdir@ && \
 
45
        echo "making srctarball from @srcdir@" && \
 
46
        echo "GA        $${targ}" && \
 
47
        git archive --format=tar.gz \
 
48
                --prefix=@PACKAGE_TARNAME@-@PACKAGE_VERSION@/ \
 
49
                --output=$${targ} \
 
50
                HEAD && \
 
51
        cd -
 
52