diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-02-24 10:14:05 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-02-24 10:14:05 -0300 |
commit | a3e8aa6c319e38606e7d10562c793e3027c57ff4 (patch) | |
tree | 4a0c28db7967fc14336167b3211f3234ccf60769 /Makefile | |
parent | 4395ba1f645d36fa0a29e63f43d6a14e5c052372 (diff) | |
download | hydra-a3e8aa6c319e38606e7d10562c793e3027c57ff4.tar.gz hydra-a3e8aa6c319e38606e7d10562c793e3027c57ff4.tar.bz2 |
Feat: migrate docs to MkDocs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6e28c6c --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# +# Makefile for The Hydra Suite +# + +.PHONY: publish docs + +publish: docs + @rsync -avz --delete site/ hydra:/var/sites/hidra/www/ + @rsync -avz --delete slides/ hydra:/var/sites/hidra/www/slides/ + +docs: + @mkdocs build |