mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-04 16:45:07 -05:00
a105718fd7
* Fixed the --enable-debug option in ./configure (never worked)
27 lines
489 B
Makefile
27 lines
489 B
Makefile
SUBDIRS = lib/libfetch 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: src/pacman
|
|
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]
|