mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
1f0976a26c
Cross-platform API (get operation) Handshake initiation creation process Outbound packet flow Fixes from code-review
10 lines
118 B
Makefile
10 lines
118 B
Makefile
BINARY=wireguard-go
|
|
|
|
build:
|
|
go build -o ${BINARY}
|
|
|
|
clean:
|
|
if [ -f ${BINARY} ]; then rm ${BINARY}; fi
|
|
|
|
.PHONY: clean
|