aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1513ef5e7bc6399885448c4c849f9da426ad4b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
all: wireguard-go

wireguard-go: $(wildcard *.go) $(wildcard */*.go)
	go build -o $@

clean:
	rm -f wireguard-go

.PHONY: clean cloc