mirror of
https://github.com/moparisthebest/curl
synced 2025-03-02 10:21:46 -05:00
19 lines
223 B
Makefile
19 lines
223 B
Makefile
EXTRA_DIST = data/*.txt ftpserver.pl httpserver.pl runtests.pl
|
|
|
|
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
|
|
|