11 lines
172 B
Makefile
11 lines
172 B
Makefile
# vim: noexpandtab ai sw=4 ts=4
|
|
all: build
|
|
|
|
build:
|
|
go run cmd/fetch-static/main.go
|
|
go build -o gonotes cmd/server/main.go
|
|
|
|
run:
|
|
./gonotes -c ./conf.toml
|
|
|
|
dev: build run
|