make clean

This commit is contained in:
2026-03-04 22:28:37 +01:00
parent 89dc3afa12
commit 08463e18d0
2 changed files with 27 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
ENV = export $(shell cat .env | grep -v '^\#' | grep -v '^$$' | xargs)
.PHONY: fetch write translate upload all
.PHONY: fetch write translate upload clean all
## Letölt egy wiki oldalt SOURCE.md-be
## Használat: make fetch URL=/path/to/page
@@ -19,5 +19,9 @@ translate:
upload:
$(ENV) && python3 generator.py upload
## Törli az output mappából az .md fájlokat
clean:
$(ENV) && python3 generator.py clean
## Teljes pipeline: write → translate → upload
all: write translate upload