Fixing a few issues

This commit is contained in:
2026-01-03 00:10:12 +00:00
parent 53f279f7d6
commit be7841bbb7
9 changed files with 64 additions and 82 deletions

View File

@@ -1,10 +1,16 @@
.PHONY: all fast clean norm tests help
.PHONY: all build json fast clean norm tests help
# Default target: full build with search index
all:
all: clean build json
build:
@echo "Building project (full rebuild with search index)..."
emacs -Q --script lisp/build.el
json:
@echo "Generating the JSON output..."
python search-index.py
# Fast build without search index
fast:
@echo "Building project (fast rebuild without search index)..."
@@ -26,7 +32,9 @@ tests:
# Show help message
help:
@echo "Available targets:"
@echo " make - Full rebuild (with search index)"
@echo " make - Clean, build, and generate search index (default)"
@echo " make build - Full rebuild (with search index)"
@echo " make json - Generate JSON output for search index"
@echo " make fast - Fast rebuild (without search index)"
@echo " make clean - Remove output directory"
@echo " make tests - Run all of the tests associated with the project"