Update Makefile

Update Makefile so that the built website files are outside the source directory.
This commit is contained in:
luca0N! 2023-09-07 23:43:43 -03:00
parent 79269d471a
commit 114504a593
Signed by: luca0N
GPG Key ID: 5978D960572B449E
1 changed files with 6 additions and 1 deletions

View File

@ -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