Blame Makefile.am

Packit fbef6a
# Copyright 2000-2017 Free Software Foundation, Inc.
Packit fbef6a
# This Makefile.am is free software; the Free Software Foundation
Packit fbef6a
# gives unlimited permission to copy and/or distribute it,
Packit fbef6a
# with or without modifications, as long as this notice is preserved.
Packit fbef6a
Packit fbef6a
# This program is distributed in the hope that it will be useful,
Packit fbef6a
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
Packit fbef6a
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
Packit fbef6a
# PARTICULAR PURPOSE.
Packit fbef6a
Packit fbef6a
Packit fbef6a
AUTOMAKE_OPTIONS = gnu
Packit fbef6a
Packit fbef6a
# ACLOCAL_AMFLAGS will be fully deprecated in Automake 2.0;
Packit fbef6a
# AC_CONFIG_MACRO_DIRS (introduced in Automake 1.13) is now used instead,
Packit fbef6a
# but we still set ACLOCAL_AMFLAGS to avoid a warning message from
Packit fbef6a
# libtoolize and in case some developer needs to switch back to an
Packit fbef6a
# old Automake version.
Packit fbef6a
ACLOCAL_AMFLAGS = -I m4
Packit fbef6a
Packit fbef6a
SUBDIRS = doc src tests tune
Packit fbef6a
Packit fbef6a
nobase_dist_doc_DATA = AUTHORS BUGS COPYING COPYING.LESSER NEWS TODO \
Packit fbef6a
  examples/ReadMe examples/divworst.c examples/rndo-add.c examples/sample.c \
Packit fbef6a
  examples/version.c
Packit fbef6a
Packit fbef6a
EXTRA_DIST = PATCHES VERSION \
Packit fbef6a
  tools/ck-copyright-notice tools/ck-news tools/ck-version-info \
Packit fbef6a
  tools/get_patches.sh \
Packit fbef6a
  $(DATAFILES)
Packit fbef6a
Packit fbef6a
# Various checks for "make dist".
Packit fbef6a
# * Check consistency concerning -version-info. Moreover if the VERSION
Packit fbef6a
#   file doesn't end with "-dev", check that the -version-info value is
Packit fbef6a
#   up-to-date. Note: this is a heuristic, to detect some mistakes.
Packit fbef6a
# * Check that copyright notices exist and appear to be correct.
Packit fbef6a
# * Check the NEWS file.
Packit fbef6a
dist-hook:
Packit fbef6a
	cd $(srcdir) && tools/ck-version-info
Packit fbef6a
	cd $(srcdir) && tools/ck-copyright-notice
Packit fbef6a
	cd $(srcdir) && tools/ck-news