diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-29 17:29:02 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-29 17:29:02 -0400 |
commit | cbe8694c76ea68d56073ffe3e74359a5db4d997a (patch) | |
tree | 7684c959ba3da4d4abf0677f381333202f9d9895 /build-aux/Makefile.once.head/00-dist.mk | |
parent | 7d1baa39157b6ab5e9f0cb6b5413f6fc1e2d4eea (diff) |
tidy
Diffstat (limited to 'build-aux/Makefile.once.head/00-dist.mk')
-rw-r--r-- | build-aux/Makefile.once.head/00-dist.mk | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/build-aux/Makefile.once.head/00-dist.mk b/build-aux/Makefile.once.head/00-dist.mk index 314f7f8..98fc6b3 100644 --- a/build-aux/Makefile.once.head/00-dist.mk +++ b/build-aux/Makefile.once.head/00-dist.mk @@ -1 +1,37 @@ +# Copyright (C) 2015-2016 Luke Shumaker +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Developer configuration + dist.exts ?= .tar.gz +PACKAGE ?= YOUR_PACKAGE_NAME +VERSION ?= 0.0.1 + +# User configuration + +CP ?= cp +GZIP ?= gzip +MKDIR ?= mkdir +MKDIR_P ?= mkdir -p +MV ?= mv +RM ?= rm -f +TAR ?= tar + +GZIPFLAGS ?= $(GZIP_ENV) +GZIP_ENV ?= --best + +# Implementation + +at.phony += dist |