mirror of
https://github.com/moparisthebest/curl
synced 2024-11-13 13:05:03 -05:00
18 lines
160 B
Makefile
18 lines
160 B
Makefile
|
|
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
|
|
|