_alpm_checkconflicts split
[pacman.git] / Makefile.am
blobe07321b3b1cff3f5f8c2b18ca7a01cf31cddb8c6
1 SUBDIRS = lib/libalpm src/util src/pacman scripts doc etc po pactest contrib
3 # Some files automatically included, so they aren't specified below:
4 #   AUTHORS, COPYING, NEWS, README
5 EXTRA_DIST = HACKING
7 # run the pactest test suite
8 check-local:  src/pacman
9         $(PYTHON) $(top_srcdir)/pactest/pactest.py --debug=1 \
10                 --test $(top_srcdir)/pactest/tests/*.py \
11                 -p $(top_builddir)/src/pacman/pacman
12         rm -rf $(top_builddir)/root
14 # create the pacman DB and cache directories upon install
15 install-data-local:
16         for dir in "$(DESTDIR)$(localstatedir)/lib/pacman" "$(DESTDIR)$(localstatedir)/cache/pacman/pkg"; do \
17           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
18         done
20 # vim:set ts=2 sw=2 noet: