make test in root now runs make quiet-test in the test dir

This commit is contained in:
Daniel Stenberg 2000-11-17 15:30:01 +00:00
parent 7c6414ebbd
commit ec3054e1f2
2 changed files with 5 additions and 1 deletions

View File

@ -9,4 +9,4 @@ EXTRA_DIST = curl.spec curl-ssl.spec
SUBDIRS = docs lib src include tests
test:
@(cd tests; make test)
@(cd tests; make quiet-test)

View File

@ -5,6 +5,10 @@ install:
test:
./runtests.pl
quiet-test:
./runtests.pl -s -c
clean:
rm -rf log
find . -name "*~" | xargs rm -f