diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0320d67 --- /dev/null +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 9cbe869..0ba2a86 100644 --- a/README.md +++ b/README.md @@ -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 +```