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
|