10 lines
127 B
Makefile
10 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
|