Files
wireguard-go/Makefile
T

13 lines
194 B
Makefile
Raw Normal View History

2017-08-01 14:41:32 +02:00
all: wireguard-go
2017-06-28 23:45:45 +02:00
2017-08-01 14:41:32 +02:00
wireguard-go: $(wildcard *.go)
go build -o $@
2017-06-28 23:45:45 +02:00
clean:
2017-08-01 14:41:32 +02:00
rm -f wireguard-go
2017-06-28 23:45:45 +02:00
2017-08-01 14:41:32 +02:00
cloc:
cloc $(filter-out xchacha20.go $(wildcard *_test.go), $(wildcard *.go))
.PHONY: clean cloc