1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-13 11:51:57 +00:00
srs/trunk/3rdparty/httpx-static/Makefile
2021-05-02 21:06:31 +08:00

19 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"