mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-16 14:06:54 +02:00
Cross-platform API (get operation) Handshake initiation creation process Outbound packet flow Fixes from code-review
9 lines
118 B
Makefile
9 lines
118 B
Makefile
BINARY=wireguard-go
|
|
|
|
build:
|
|
go build -o ${BINARY}
|
|
|
|
clean:
|
|
if [ -f ${BINARY} ]; then rm ${BINARY}; fi
|
|
|
|
.PHONY: clean
|