gonotes/Makefile

12 lines
172 B
Makefile
Raw Normal View History

2025-07-25 13:44:21 +01:00
# vim: noexpandtab ai sw=4 ts=4
2025-06-25 22:43:34 +01:00
all: build
build:
go run cmd/fetch-static/main.go
2025-06-25 22:52:33 +01:00
go build -o gonotes cmd/server/main.go
2025-07-25 13:44:21 +01:00
run:
./gonotes -c ./conf.toml
dev: build run