Fixing a few issues
This commit is contained in:
14
Makefile
14
Makefile
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user