Align with go library layout

This commit is contained in:
Mathias Hall-Andersen
2018-02-04 16:08:26 +01:00
parent 5871ec04de
commit a0f54cbe5a
50 changed files with 4 additions and 4 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
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