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

9 lines
127 B
Makefile

.PHONY: default clean
default: ./http1-to-2
./http1-to-2: *.go *.mod
go build -o ./http1-to-2 .
clean:
rm -f ./http1-to-2