1
0
mirror of https://github.com/cmur2/miflorad.git synced 2026-04-02 16:18:34 +02:00
This commit is contained in:
cn
2018-12-13 16:33:37 +01:00
parent 11971e9274
commit fda3b469b3
2 changed files with 30 additions and 0 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
.POSIX:
.PHONY: all
all: clean build test
.PHONY: run
run: clean build test
cmd/munin-miflora/munin-miflora xyz 00:00:00:00:00:00
.PHONY: clean
clean:
rm -f cmd/munin-miflora/munin-miflora
.PHONY: build
build: cmd/munin-miflora/munin-miflora
.PHONY: test
test: build
cmd/munin-miflora/munin-miflora:
cd cmd/munin-miflora; go build; cd ../..