1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Add one to one demo for no-localhost

This commit is contained in:
winlin 2021-05-02 21:06:31 +08:00
parent 5a611e0c4b
commit 5e6fe49da1
63 changed files with 9837 additions and 18 deletions

19
trunk/3rdparty/httpx-static/Makefile vendored Normal file
View file

@ -0,0 +1,19 @@
.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"