9 lines
79 B
Makefile
9 lines
79 B
Makefile
all:
|
|
|
|
%: %.go
|
|
mkdir -p build/
|
|
go build -o build/$@ $<
|
|
|
|
clean:
|
|
rm -rf build/
|