12 lines
188 B
Makefile
12 lines
188 B
Makefile
# luca0N.com website sources Makefile
|
|
# 2022-09-12
|
|
# https://git.luca0n.com/luca0N-website.git
|
|
|
|
SWG=swg
|
|
|
|
all:
|
|
$(SWG) src/en/
|
|
$(SWG) src/pt/
|
|
|
|
clean:
|
|
rm -rfv src/en/output src/pt/output
|