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
|
# Main Makefile for Recode.
# Copyright © 1992-2018 Free Software Foundation, Inc.
# François Pinard <pinard@iro.umontreal.ca>, 1992.
# 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, 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/>.
AUTOMAKE_OPTIONS = gnits
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = doc lib src po tests contrib
EXTRA_DIST = COPYING-LIB \
m4/gnulib-cache.m4 tables.py \
keld/NomsSeulsfinal.lst keld/charsets.def keld/control.def \
keld/iso10646.def keld/other.def keld/rfc1345.txt
release: distcheck
git diff --exit-code && \
git tag -a -m "Release tag" "v$(VERSION)" && \
git push && git push --tags && \
woger github \
github_user=rrthomas \
package=$(PACKAGE) \
version=$(VERSION) \
dist_type=tar.gz
# Ignore built files that are part of the distribution (specifically,
# src/recode.1).
distcleancheck_listfiles = \
find . -type f -exec sh -c 'test -f $(srcdir)/$$1 || echo $$1' \
sh '{}' ';'
|