mirror of
https://github.com/rairyx/raven.git
synced 2024-11-10 01:10:31 +00:00
6 lines
85 B
Makefile
6 lines
85 B
Makefile
|
SRC = private-key-gen.go
|
||
|
BIN = $(SRC:.go=)
|
||
|
|
||
|
all: $(SRC)
|
||
|
go build -o $(BIN) $(SRC)
|