mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
10 lines
133 B
Makefile
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
|