summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-01-16 09:31:12 -0500
committerLouie S <louie@example.com>2024-01-16 09:31:12 -0500
commit2d1e8a273dc45fc10f4d5628e406ab970b720381 (patch)
tree82ed5d081bf690a16b69e4382695392ab351ba32 /Makefile
parent10a6815096b5101618d22c518dcc72331831d231 (diff)
Index termsHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4b63990..47d633c 100644
--- a/Makefile
+++ b/Makefile
@@ -68,9 +68,13 @@ $(DOCUMENTS_DIR): $(RESOURCES_DIR) $(MANUAL_FILE)
$(INFO_PLIST_FILE): src/Info.plist $(CONTENTS_DIR)
cp src/Info.plist $@
-$(INDEX_FILE): src/index.sh $(DOCUMENTS_DIR)
+$(INDEX_FILE): src/index-pages.sh src/index-terms.sh $(DOCUMENTS_DIR)
rm -f $@
- src/index.sh $@ $(DOCUMENTS_DIR)/*.html
+ src/index-pages.sh $@ $(DOCUMENTS_DIR)/*.html
+ src/index-terms.sh "Type" "elementary" $@ $(DOCUMENTS_DIR)/Reference-manual.html
+ src/index-terms.sh "Function" "functions" $@ $(DOCUMENTS_DIR)/Reference-manual.html
+ src/index-terms.sh "Builtin" "builtin" $@ $(DOCUMENTS_DIR)/Reference-manual.html
+ src/index-terms.sh "Object" "returned" $@ $(DOCUMENTS_DIR)/Reference-manual.html
$(ICON_FILE): src/icon.png $(DOCSET_DIR)
cp $(SRC_ICON) $@