mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
a997d60304
test suite
23 lines
326 B
Makefile
23 lines
326 B
Makefile
EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl
|
|
|
|
SUBDIRS = data
|
|
|
|
all:
|
|
install:
|
|
|
|
curl:
|
|
@(cd ..; make)
|
|
|
|
test:
|
|
$(MAKE) -C data test
|
|
srcdir=$(srcdir) $(PERL) $(srcdir)/runtests.pl
|
|
|
|
quiet-test:
|
|
$(MAKE) -C data test
|
|
srcdir=$(srcdir) $(PERL) $(srcdir)/runtests.pl -s -a
|
|
|
|
clean:
|
|
rm -rf log
|
|
find . -name "*~" | xargs rm -f
|
|
|