pomo/Makefile

14 lines
374 B
Makefile
Raw Permalink Normal View History

2020-05-25 00:52:30 +00:00
.PHONY: default
default:
@echo "No default targets. Use one of the following targets."
@grep "^# target" Makefile
# target: dev -- start a watcher on pomo.fnl
dev: pomo.fnl
ls pomo.fnl | entr -c -r fennel pomo.fnl
2020-05-30 04:32:18 +00:00
# target: compile -- compile to a single lua file
2020-05-25 00:52:30 +00:00
compile: pomo.fnl
2020-05-30 04:32:18 +00:00
@fennel --compile --require-as-include pomo.fnl > pomo.lua
2020-05-25 00:52:30 +00:00
@echo "Created pomo.lua"