mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-11-08 00:13:59 +01:00
13 lines
194 B
Makefile
13 lines
194 B
Makefile
all: wireguard-go
|
|
|
|
wireguard-go: $(wildcard *.go)
|
|
go build -o $@
|
|
|
|
clean:
|
|
rm -f wireguard-go
|
|
|
|
cloc:
|
|
cloc $(filter-out xchacha20.go $(wildcard *_test.go), $(wildcard *.go))
|
|
|
|
.PHONY: clean cloc
|