summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 5b23ecc..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-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