diff --git a/issues/Makefile b/issues/Makefile index f84a8c3..9614a7f 100644 --- a/issues/Makefile +++ b/issues/Makefile @@ -1,9 +1,9 @@ generate-site: - 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 + ls | grep issue- | sort -n | xargs tools/make_issue.sh + tools/make_issue.sh _index ../public/index.html + tools/sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml gzip -9 -c ../public/sitemap.xml > ../public/sitemap.gz - ./atom.sh webzine.puffy.cafe > ../public/atom.xml + tools/atom.sh webzine.puffy.cafe > ../public/atom.xml all: generate-site @@ -13,7 +13,7 @@ clean: rm ../dev/*html test: - ./make_issue.sh current /tmp/current-issue.html + tools/make_issue.sh current /tmp/current-issue.html xdg-open /tmp/current-issue.html testsite: generate-site diff --git a/issues/atom.sh b/issues/tools/atom.sh similarity index 100% rename from issues/atom.sh rename to issues/tools/atom.sh diff --git a/issues/make_issue.sh b/issues/tools/make_issue.sh similarity index 100% rename from issues/make_issue.sh rename to issues/tools/make_issue.sh diff --git a/issues/sitemap.sh b/issues/tools/sitemap.sh similarity index 100% rename from issues/sitemap.sh rename to issues/tools/sitemap.sh