mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
27 lines
474 B
Makefile
27 lines
474 B
Makefile
SUBDIRS = lib/libftp lib/libalpm src/util src/pacman scripts doc doc/hu 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 \
|
|
COPYING \
|
|
README \
|
|
TODO \
|
|
TODO.autoconf
|
|
|
|
check:
|
|
cd pactest; python pactest.py --test=tests/*.py -p ../src/pacman/pacman --debug=1
|
|
|
|
tags:
|
|
ctags -a lib/libalpm/*.[ch]
|
|
ctags -a lib/libftp/*.[ch]
|
|
ctags -a src/pacman/*.[ch]
|