metanohi-gopher/Makefile

14 lines
162 B
Makefile
Raw Permalink Normal View History

2022-06-12 21:32:53 +02:00
.PHONY: all clean watch
all: index.gph
index.gph: index.gph.sh
sh $< > $@
clean:
rm -f index.gph
watch:
make
while inotifywait -e modify .; do make; done