6 lines
98 B
Makefile
6 lines
98 B
Makefile
|
SOURCES := $(shell find . -name "*.go" -print)
|
||
|
BIN := pepster
|
||
|
|
||
|
$(BIN): $(SOURCES)
|
||
|
go build -o $@
|