You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
212 B
Makefile

.PHONY: all
all: setup build
.PHONY: setup
setup:
mkdir -p bin/
.PHONY: build
build:
go build -o bin/posti-dm .
.PHONY: run
run:
go run .
.PHONY: watch
watch:
find -name '*.go' | entr -r -s 'go run .'