5 lines
82 B
Makefile
5 lines
82 B
Makefile
|
SOURCES := $(shell find -name "*.go" -print)
|
||
|
|
||
|
backend: $(SOURCES)
|
||
|
go build -o $@
|