mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 03:25:04 -05:00
21 lines
228 B
Makefile
21 lines
228 B
Makefile
EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl
|
|
|
|
SUBDIRS = data
|
|
|
|
all:
|
|
install:
|
|
|
|
curl:
|
|
@(cd ..; make)
|
|
|
|
test:
|
|
$(PERL) runtests.pl
|
|
|
|
quiet-test:
|
|
$(PERL) runtests.pl -s -a
|
|
|
|
clean:
|
|
rm -rf log
|
|
find . -name "*~" | xargs rm -f
|
|
|