10 lines
98 B
Makefile
10 lines
98 B
Makefile
|
|
all: clean build
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm colonel sentinel
|
||
|
|
|
||
|
|
build:
|
||
|
|
go build colonel.go
|
||
|
|
go build sentinel.go
|
||
|
|
|