You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
srs/trunk/3rdparty/httpx-static/Makefile

20 lines
405 B
Makefile

.PHONY: help default clean httpx-static
default: httpx-static
clean:
rm -f ./objs/httpx-static
.format.txt: *.go
gofmt -w .
echo "done" > .format.txt
httpx-static: ./objs/httpx-static
./objs/httpx-static: .format.txt *.go Makefile
go build -mod=vendor -o objs/httpx-static .
help:
@echo "Usage: make [httpx-static]"
@echo " httpx-static Make the httpx-static to ./objs/httpx-static"