Wave changes

This commit is contained in:
2026-03-27 15:40:37 +00:00
parent 7fbe850756
commit 529acd4fcc
241 changed files with 8664 additions and 1256 deletions

View File

@@ -0,0 +1,54 @@
.PHONY: all clean norm help
VENV := .venv
PY := $(VENV)/bin/python
PIP := $(VENV)/bin/pip
all: clean-output build search clean-venv
build:
@echo "Building project..."
emacs -Q --script build-site.el
search: $(VENV)
@echo "Generating search index"
$(PY) search-index-json.py
$(VENV):
@echo "Generating virtual environment"
python3 -m venv $(VENV)
$(PIP) install -r requirements.txt
clean-output:
@echo "Cleaning output directory..."
rm -rf output/
clean-venv:
@echo "Cleaning virtual environment..."
rm -rf $(VENV)
norm:
@echo "sorting out the backups..."
find . -path ./backups -prune -o -type f -name '*~' -exec mv {} backups/ \;
fix-permissions:
echo "shakkal123" | sudo -S chown -R zaine:zaine .
restore-permissions:
echo "shakkal123" | sudo -S chown -R 33:33 .
perm-change-logs:
echo "shakkal123" | sudo -S chown -R zaine:zaine org-web-build.log
# Show help message
help:
@echo "Available targets:"
@echo " make - Full rebuild"
@echo " make build - Rebuild the output directory"
@echo " make clean-output - Remove output directory"
@echo " make clean-venv - Remove venv directory"
@echo " make norm - Move all files that end with ~ to the backup folder"
@echo " make search - creates the search index"
@echo " make fix-permissions - Fix permissions for the current user"
@echo " make restore-permissions - Restore permissions to www-data"
@echo " make help - Show this help message!"