index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | Makefile.am | 14 |
diff --git a/Makefile.am b/Makefile.am index 44523442..ebec81b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,13 @@ -SUBDIRS = lib/libftp lib/libalpm src/util src/pacman scripts doc +SUBDIRS = lib/libftp lib/libalpm src/util src/pacman scripts doc etc +if HAS_PERL +SUBDIRS += bindings/perl +endif +if HAS_PYTHON +SUBDIRS += bindings/python +endif +if HAS_JAVA +SUBDIRS += bindings/java +endif EXTRA_DIST = \ ChangeLog \ @@ -6,3 +15,6 @@ EXTRA_DIST = \ README \ TODO \ TODO.autoconf + +check: + cd pactest; python pactest.py --test=tests/*.py -p ../src/pacman/pacman --debug=1 |