1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2024-11-15 01:05:15 +01:00
wireguard-go/Makefile
Jason A. Donenfeld 7e10ebe101 Introduce rwcancel
2018-05-14 00:30:52 +02:00

10 lines
133 B
Makefile

all: wireguard-go
wireguard-go: $(wildcard *.go) $(wildcard */*.go)
go build -o $@
clean:
rm -f wireguard-go
.PHONY: clean cloc