summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLouie Shprung <lshprung@scu.edu>2022-11-21 22:00:04 -0800
committerLouie Shprung <lshprung@scu.edu>2022-11-22 08:45:27 -0800
commitee103902c141cdc3dce565af453b589fd1fc7a82 (patch)
treeff8456af0218b252c9f0039f9bf4bc17d3ac2506 /Makefile
parent1433e5580757ef140bc64bcc5a904fd0ab9401ed (diff)
Rewrite in POSIX shell
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8812bbe..ac6a91b 100644
--- a/Makefile
+++ b/Makefile
@@ -47,9 +47,9 @@ $(DOCUMENTS_DIR): $(RESOURCES_DIR) $(MANUAL_FILE)
$(INFO_PLIST_FILE): src/Info.plist $(CONTENTS_DIR)
cp src/Info.plist $@
-$(INDEX_FILE): src/index.rb $(DOCUMENTS_DIR)
+$(INDEX_FILE): src/index.sh $(DOCUMENTS_DIR)
rm -f $@
- ruby src/index.rb $(DOCUMENTS_DIR)/*.html | sqlite3 $@
+ src/index.sh $@ $(DOCUMENTS_DIR)/*.html
$(ICON_FILE): src/icon.png $(DOCSET_DIR)
cp src/icon.png $@