luca0N-website/Makefile
luca0N! 114504a593
Update Makefile
Update Makefile so that the built website files are outside the source directory.
2023-09-07 23:44:14 -03:00

17 lines
280 B
Makefile

# luca0N.com website sources Makefile
# 2022-09-12
# https://git.luca0n.com/luca0N-website.git
SWG=swg
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