This commit is contained in:
7
Makefile
7
Makefile
@@ -1,4 +1,4 @@
|
||||
.PHONY: all clean norm help
|
||||
.PHONY: all clean norm author help
|
||||
|
||||
VENV := .venv
|
||||
PY := $(VENV)/bin/python
|
||||
@@ -36,6 +36,10 @@ norm:
|
||||
@echo "sorting out the backups..."
|
||||
find . -path ./backups -prune -o -type f -name '*~' -exec mv {} backups/ \;
|
||||
|
||||
author:
|
||||
@echo "Starting local authoring UI..."
|
||||
python3 authoring_server.py
|
||||
|
||||
# Show help message
|
||||
help:
|
||||
@echo "Available targets:"
|
||||
@@ -45,5 +49,6 @@ help:
|
||||
@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 author - Start the local authoring UI"
|
||||
@echo " make search - creates the search index"
|
||||
@echo " make help - Show this help message!"
|
||||
|
||||
Reference in New Issue
Block a user