3 # Copyright (c) 2025 Arthur Taft. All Rights Reserved.
9 @echo 'make build default target, builds site into ./site'
10 @echo 'make serve serve site locally using simple python webserver'
11 @echo 'make deploy deploy site'
12 @echo 'make test build and serve site'
13 @echo 'make all build and deploy site'
14 @echo 'make clean cleans'
18 mkdir -p site site/about site/blog site/contact site/resume site/static
19 echo -n > site/static/index.html
20 cat static/LiberationMono-Regular.woff2 > site/static/LiberationMono-Regular.woff2
21 cat static/about.html > site/about/index.html
22 cat static/blog.html > site/blog/index.html
23 cat static/contact.html > site/contact/index.html
24 cat static/in-progress.gif > site/static/in-progress.gif
25 cat static/index.html > site/index.html
26 cat static/resume-styles.css > site/static/resume-styles.css
27 cat static/resume.html > site/resume/index.html
28 cat static/shell-icon.ico > site/favicon.ico
29 cat static/styles.css > site/static/styles.css
39 python -m http.server -d site
47 rsync -avh --delete ./site/ /var/www/arthurtaft.net/