2007-07-06 17:59:08 -04:00
|
|
|
SUBDIRS = lib/libalpm src/util src/pacman scripts doc etc po pactest contrib
|
2006-10-15 16:46:33 -04:00
|
|
|
|
2007-02-21 23:36:02 -05:00
|
|
|
# Some files automatically included, so they aren't specified below:
|
|
|
|
# AUTHORS, COPYING, NEWS, README
|
|
|
|
EXTRA_DIST = HACKING
|
2006-10-15 15:38:02 -04:00
|
|
|
|
2007-07-10 14:58:45 -04:00
|
|
|
# run the pactest test suite
|
2007-02-22 16:34:51 -05:00
|
|
|
check-local: src/pacman
|
2007-10-30 01:20:18 -04:00
|
|
|
$(PYTHON) $(top_srcdir)/pactest/pactest.py --debug=1 \
|
2007-03-24 00:18:17 -04:00
|
|
|
--test $(top_srcdir)/pactest/tests/*.py \
|
|
|
|
-p $(top_builddir)/src/pacman/pacman
|
2007-02-22 16:34:51 -05:00
|
|
|
rm -rf $(top_builddir)/root
|
|
|
|
|
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
|
|
|
|
|
2007-06-04 17:49:09 -04:00
|
|
|
# vim:set ts=2 sw=2 noet:
|