15 lines
125 B
Makefile
15 lines
125 B
Makefile
|
|
all:
|
|
install:
|
|
|
|
test:
|
|
./runtests.pl
|
|
|
|
quiet-test:
|
|
./runtests.pl -s -a
|
|
|
|
clean:
|
|
rm -rf log
|
|
find . -name "*~" | xargs rm -f
|
|
|