Add a Makefile

This commit is contained in:
Emi Simpson 2023-10-28 12:15:52 -04:00
parent 3654ae61df
commit 6b8a4afa04
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 16 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
all: site/style.css site/index.html site/drift.js
clean:
rm -r site .sass-cache
sitedir:
mkdir -p ./site
site/style.css: sitedir style.sass
sass style.sass site/style.css
site/index.html: sitedir index.html
cp --reflink=auto index.html site/
site/drift.js: sitedir drift.js
cp --reflink=auto drift.js site/