2012-04-08 12:32:17 -04:00
|
|
|
SUBDIRS = lib/libalpm src/util src/pacman scripts etc test/pacman test/util test/scripts
|
2007-12-22 00:47:18 -05:00
|
|
|
if WANT_DOC
|
|
|
|
SUBDIRS += doc
|
|
|
|
endif
|
2006-10-15 16:46:33 -04:00
|
|
|
|
2013-01-03 05:49:33 -05:00
|
|
|
DIST_SUBDIRS = $(SUBDIRS) contrib src/common
|
2011-12-12 16:36:56 -05:00
|
|
|
|
2010-09-23 10:10:47 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I m4 --install
|
2012-05-08 02:51:02 -04:00
|
|
|
AM_MAKEFLAGS = --no-print-directory
|
2010-09-23 10:10:47 -04:00
|
|
|
|
2008-08-05 22:03:59 -04:00
|
|
|
# Make sure we test and build manpages when doing distcheck
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-doc --disable-git-version
|
|
|
|
|
2007-02-21 23:36:02 -05:00
|
|
|
# Some files automatically included, so they aren't specified below:
|
|
|
|
# AUTHORS, COPYING, NEWS, README
|
2014-12-23 16:09:58 -05:00
|
|
|
EXTRA_DIST = HACKING test/tap.sh
|
2006-10-15 15:38:02 -04:00
|
|
|
|
2008-01-06 11:23:49 -05:00
|
|
|
# Sample makepkg prototype files
|
|
|
|
pkgdatadir = ${datadir}/${PACKAGE}
|
2011-06-25 16:45:01 -04:00
|
|
|
dist_pkgdata_DATA = \
|
|
|
|
proto/PKGBUILD.proto \
|
|
|
|
proto/PKGBUILD-split.proto \
|
2014-01-28 08:49:47 -05:00
|
|
|
proto/PKGBUILD-vcs.proto \
|
2014-02-01 21:28:09 -05:00
|
|
|
proto/proto.install
|
2008-01-06 11:23:49 -05:00
|
|
|
|
2013-09-19 22:00:11 -04:00
|
|
|
$(top_srcdir)/test/pacman/tests/TESTS: $(wildcard test/pacman/tests/*.py*)
|
|
|
|
@printf "TESTS += %s\n" $^ | sed -e "s/\.py\.in/.py/" | LC_ALL=C sort -u > "$@"
|
|
|
|
|
2013-07-18 03:43:51 -04:00
|
|
|
TESTS = test/scripts/parseopts_test.sh \
|
|
|
|
test/scripts/human_to_size_test.sh \
|
2014-12-21 09:46:37 -05:00
|
|
|
test/scripts/makepkg-template_test.sh \
|
2014-10-06 04:09:10 -04:00
|
|
|
test/scripts/pacman-db-upgrade-v9.py \
|
2013-07-18 03:43:51 -04:00
|
|
|
test/util/pacsorttest.sh \
|
|
|
|
test/util/vercmptest.sh
|
|
|
|
include $(top_srcdir)/test/pacman/tests/TESTS
|
|
|
|
|
2014-01-09 09:44:18 -05:00
|
|
|
TEST_SUITE_LOG = test/test-suite.log
|
2013-07-18 03:43:51 -04:00
|
|
|
TEST_EXTENSIONS = .py
|
|
|
|
AM_TESTS_ENVIRONMENT = \
|
2013-09-18 14:27:00 -04:00
|
|
|
PMTEST_UTIL_DIR=$(top_builddir)/src/util/; export PMTEST_UTIL_DIR; \
|
2014-12-21 09:46:37 -05:00
|
|
|
PMTEST_SCRIPT_DIR=$(top_builddir)/scripts/; export PMTEST_SCRIPT_DIR; \
|
2013-07-18 03:43:51 -04:00
|
|
|
PMTEST_SCRIPTLIB_DIR=$(top_srcdir)/scripts/library/; export PMTEST_SCRIPTLIB_DIR;
|
2013-11-05 08:50:44 -05:00
|
|
|
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
|
2013-07-18 03:43:51 -04:00
|
|
|
$(top_srcdir)/build-aux/tap-driver.sh
|
|
|
|
PY_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
|
|
|
|
$(top_srcdir)/build-aux/tap-driver.sh
|
2013-12-20 11:59:46 -05:00
|
|
|
PY_LOG_COMPILER = $(PYTHON) $(top_srcdir)/test/pacman/pactest.py
|
2013-07-18 03:43:51 -04:00
|
|
|
AM_PY_LOG_FLAGS = \
|
2013-01-20 01:49:52 -05:00
|
|
|
--scriptlet-shell $(SCRIPTLET_SHELL) \
|
2013-01-20 06:56:57 -05:00
|
|
|
--ldconfig $(LDCONFIG) \
|
2014-10-06 03:01:40 -04:00
|
|
|
--bindir $(top_builddir)/src/pacman \
|
|
|
|
--bindir $(top_builddir)/scripts
|
2007-02-22 16:34:51 -05:00
|
|
|
|
2007-07-10 14:58:45 -04:00
|
|
|
# create the pacman DB and cache directories upon install
|
|
|
|
install-data-local:
|
|
|
|
for dir in "$(DESTDIR)$(localstatedir)/lib/pacman" "$(DESTDIR)$(localstatedir)/cache/pacman/pkg"; do \
|
|
|
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
|
|
done
|
|
|
|
|
2011-10-05 23:36:34 -04:00
|
|
|
update-po:
|
|
|
|
$(MAKE) -C lib/libalpm/po update-po
|
|
|
|
$(MAKE) -C scripts/po update-po
|
|
|
|
$(MAKE) -C src/pacman/po update-po
|
|
|
|
|
2015-01-21 01:28:24 -05:00
|
|
|
update-copyright:
|
|
|
|
for file in $(shell sh -c 'git grep -l "Copyright .* Pacman Development" | grep -v "\.po"'); do \
|
|
|
|
sed -i -e "/Copyright (/s/-$(OLD)/-$(NEW)/" -e "/Copyright (/s/ $(OLD)/ $(OLD)-$(NEW)/" "$$file"; \
|
|
|
|
done
|
|
|
|
|
|
|
|
.PHONY: update-po update-copyright
|
2012-04-24 21:44:29 -04:00
|
|
|
|
2014-01-22 18:06:11 -05:00
|
|
|
# vim:set noet:
|