blob: a8dd9f1e0d2efb31562b9369f85fd0f478521ec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
build:
mkdir -p -- dist
go build -o dist/dashlab *.go
install: build
install --mode=755 --owner=root --group=root dist/dashlab /usr/bin/dashlab
uninstall:
rm -fr -- /usr/bin/dashlab
clean:
rm -fr -- dist
.PHONY: build install uninstall clean
|