Add initial gopher content

This commit is contained in:
2022-06-12 21:32:53 +02:00
commit b3471c6d67
6 changed files with 206 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.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