openbsd-webzine/issues/Makefile

17 lines
329 B
Makefile
Raw Normal View History

generate-site:
2021-09-27 10:10:42 +00:00
ls | grep issue- | sort -n | xargs ./make_issue.sh
./make_issue.sh _index ../public/index.html
all: generate-site
clean:
rm ../dev/*html
test:
./make_issue.sh current /tmp/current-issue.html
2021-09-28 19:14:27 +00:00
xdg-open /tmp/current-issue.html
testsite: generate-site
2021-09-28 19:14:27 +00:00
cp -fr ../public /tmp/
xdg-open /tmp/public/index.html