diff options
author | Louie S <louie@example.com> | 2023-03-11 21:16:18 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-03-11 21:16:18 -0800 |
commit | d61d1ffc231b5b2b7bc4131f42679097d354f611 (patch) | |
tree | be060ae01b41525165e0bbd8e1b6339f860c5095 /Makefile | |
parent | 20aa42ad2c7740d64247e900e02638317b650209 (diff) |
Use pup for HTML parsing; index the index pages
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -50,7 +50,15 @@ $(INFO_PLIST_FILE): src/Info.plist $(CONTENTS_DIR) $(INDEX_FILE): src/index.sh $(DOCUMENTS_DIR) rm -f $@ src/index.sh $@ $(DOCUMENTS_DIR)/*.html - #ruby src/index.rb $(DOCUMENTS_DIR)/*.html | sqlite3 $@ + src/index.sh -i "Entry" $@ $(DOCUMENTS_DIR)/Concept-Index.html + src/index.sh -i "Macro" $@ $(DOCUMENTS_DIR)/M4-Macro-Index.html + src/index.sh -i "Macro" $@ $(DOCUMENTS_DIR)/Autoconf-Macro-Index.html + src/index.sh -i "Macro" $@ $(DOCUMENTS_DIR)/Autotest-Macro-Index.html + src/index.sh -i "Variable" $@ $(DOCUMENTS_DIR)/Cache-Variable-Index.html + src/index.sh -i "Variable" $@ $(DOCUMENTS_DIR)/Output-Variable-Index.html + src/index.sh -i "Function" $@ $(DOCUMENTS_DIR)/Program-_0026-Function-Index.html + src/index.sh -i "Entry" $@ $(DOCUMENTS_DIR)/Preprocessor-Symbol-Index.html + src/index.sh -i "Variable" $@ $(DOCUMENTS_DIR)/Environment-Variable-Index.html $(ICON_FILE): src/icon.png $(DOCSET_DIR) cp src/icon.png $@ |