1 SUBDIRS = lib/libalpm src/util src/pacman scripts etc po test/pacman test/util contrib
6 ACLOCAL_AMFLAGS = -I m4 --install
8 # Make sure we test and build manpages when doing distcheck
9 DISTCHECK_CONFIGURE_FLAGS = --enable-doc --disable-git-version
11 # Some files automatically included, so they aren't specified below:
12 # AUTHORS, COPYING, NEWS, README
15 # Sample makepkg prototype files
16 pkgdatadir = ${datadir}/${PACKAGE}
17 dist_pkgdata_DATA = PKGBUILD.proto PKGBUILD-split.proto proto.install ChangeLog.proto
19 # run the pactest test suite and vercmp tests
20 check-local: test/pacman test/util src/pacman src/util
21 $(PYTHON) $(top_srcdir)/test/pacman/pactest.py --debug=1 \
22 --test $(top_srcdir)/test/pacman/tests/*.py \
23 -p $(top_builddir)/src/pacman/pacman
24 $(SH) $(top_srcdir)/test/util/vercmptest.sh \
25 $(top_builddir)/src/util/vercmp
27 # create the pacman DB and cache directories upon install
29 for dir in "$(DESTDIR)$(localstatedir)/lib/pacman" "$(DESTDIR)$(localstatedir)/cache/pacman/pkg"; do \
30 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
33 # vim:set ts=2 sw=2 noet: