Add Makefile and build instructions

This commit is contained in:
luca0N! 2022-09-12 07:38:43 -03:00
parent 288205fc17
commit c90417537b
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
2 changed files with 20 additions and 1 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
# 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

View File

@ -18,5 +18,12 @@ Here are the instructions to build this website. It should work on any system,
### Building
Coming soon!
Run the following command in a shell:
```sh
$ make
```
To delete previously built pages, run the following command:
```sh
$ make clean
```