~m-grant-prg/dnsmasq-logrotate/bionic

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Mark Grant
  • Date: 2018-05-25 09:04:19 UTC
  • Revision ID: m.grant.prg@gmail.com-20180525090419-dv8mln00siub8ng3
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
#! /usr/bin/env bash
 
2
#########################################################################
 
3
#                                                                       #
 
4
# Script ID: ./Makefile.am                                              #
 
5
# Author: Copyright (C) 2018  Mark Grant                                #
 
6
#                                                                       #
 
7
# Released under the GPLv3 only.                                        #
 
8
# SPDX-License-Identifier: GPL-3.0                                      #
 
9
#                                                                       #
 
10
# Purpose:                                                              #
 
11
# AutoMake script file to generate dnsmasq-logrotate project.           #
 
12
#                                                                       #
 
13
#########################################################################
 
14
 
 
15
#########################################################################
 
16
#                                                                       #
 
17
# Changelog                                                             #
 
18
#                                                                       #
 
19
# Date          Author  Version Description                             #
 
20
#                                                                       #
 
21
# 24/05/2018    MG      1.0.1   First release.                          #
 
22
#                                                                       #
 
23
#########################################################################
 
24
 
 
25
 
 
26
ACLOCAL_AMFLAGS = -I m4
 
27
 
 
28
 
 
29
SUBDIRS = src/prg/bash
 
30
SUBDIRS += src/man/8
 
31
SUBDIRS += src/conf/rootetc/logrotate
 
32
 
 
33
 
 
34
srctarball:
 
35
        @cwd="$${PWD}" && \
 
36
        cd @srcdir@ && \
 
37
        git archive --format=tar.gz \
 
38
                --prefix=@PACKAGE_TARNAME@-@PACKAGE_VERSION@/ \
 
39
                --output=$${cwd}/@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz \
 
40
                HEAD && \
 
41
        cd -