openbsd-webzine/issues/Makefile

22 lines
525 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
./sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml
gzip -9 -c ../public/sitemap.xml > ../public/sitemap.gz
2021-09-29 16:44:26 +00:00
./atom.sh webzine.puffy.cafe > ../public/atom.xml
all: generate-site
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