raven/util/Makefile

6 lines
85 B
Makefile
Raw Normal View History

SRC = private-key-gen.go
BIN = $(SRC:.go=)
all: $(SRC)
go build -o $(BIN) $(SRC)