aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 60bc03c154fa7dae42b02e4cdef42396e69ca094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: prebuild fmt

build:
	mkdir -p bin
	go build -o bin/walrss github.com/codemicro/walrss/walrss

run: build
	mkdir -p run
	cd run && ../bin/walrss

fmt:
	go fmt github.com/codemicro/walrss/...