aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: 5b23ecc5f351e149ccc4ab8b9f52b722495e59eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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