diff options
author | Thomas Albers <thomas@thomaslabs.org> | 2023-03-08 23:43:00 +0100 |
---|---|---|
committer | Thomas Albers <thomas@thomaslabs.org> | 2023-03-08 23:43:00 +0100 |
commit | 61b5ce20f25c5785e41574998a12c6d06eb05a5e (patch) | |
tree | 20e2225b4f30b15d8dee30351041d1f33d42b34a /Makefile | |
parent | 561bac75579391c14e47eaccfabdf9eda98855da (diff) |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c2399c7 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all : + find site -name "*.html" -printf "https://thomaslabs.org/%P\n" > site/sitemap + +.PHONY : svg +svg : + latex -output-directory build -interaction nonstopmode src/svg/fft.tex + dvisvgm build/fft.dvi --no-fonts --exact-bbox --output=site/svg/fft.svg + +.PHONY : clean +clean : + rm -rf site/svg/* site/img-small site/math site/programs site/z80 site/index.html site/privacy.html site/arm site/sitemap + +.PHONY : upload +upload : + rsync -Pa --delete "site/" "thomas@gamma:/srv/web/thomaslabs/" |