fixing the site

This commit is contained in:
2025-12-28 20:41:18 +00:00
parent 5db24213bd
commit bb6b6c5768
487 changed files with 94631 additions and 8059 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
.PHONY: all fast clean help
# Default target: full build with search index
all:
@echo "Building project (full rebuild with search index)..."
emacs -Q --script build.el
# Fast build without search index
fast:
@echo "Building project (fast rebuild without search index)..."
emacs -Q --script build.el --fast
# Clean output directory
clean:
@echo "Cleaning output directory..."
rm -rf output/
# Show help message
help:
@echo "Available targets:"
@echo " make - Full rebuild (with search index)"
@echo " make fast - Fast rebuild (without search index)"
@echo " make clean - Remove output directory"
@echo " make help - Show this help message"