mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-11-21 23:03:08 +01:00
10 lines
114 B
Makefile
10 lines
114 B
Makefile
all: wireguard-go
|
|
|
|
wireguard-go: $(wildcard *.go)
|
|
go build -o $@
|
|
|
|
clean:
|
|
rm -f wireguard-go
|
|
|
|
.PHONY: clean cloc
|