From 114504a5930a3e0c819c08b57667278864289d7a Mon Sep 17 00:00:00 2001 From: luca0N! Date: Thu, 7 Sep 2023 23:43:43 -0300 Subject: [PATCH] Update Makefile Update Makefile so that the built website files are outside the source directory. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0320d67..18c4c44 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,14 @@ SWG=swg -all: +all: output/ $(SWG) src/en/ + mv src/en/output output/en $(SWG) src/pt/ + mv src/pt/output output/pt + +output/: + mkdir -p output/ clean: rm -rfv src/en/output src/pt/output