8 lines
81 B
Makefile
8 lines
81 B
Makefile
.PHONY: build
|
|
build:
|
|
go build -o lume ./cmd
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f ./lifx
|