From ae7319292dec4ec722362e029768c872b740c68a Mon Sep 17 00:00:00 2001 From: mappu04 Date: Thu, 15 Jun 2023 19:49:30 +1200 Subject: [PATCH] makefile: initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4663041 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ + +.PHONY: all +all: output/metadata.json + +.PHONY: clean +clean: + rm output/max_episode + +output/max_episode: + cd output && ../download-pages.sh + +output/metadata.json: output/max_episode + cd output && ../pages-to-json.php > metadata.json +