summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index bc29e82..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
1WEB_ROOT=/srv/www/crute.org/mike/htdocs
2
3site: build-site sync
4css: build-css sync
5
6build-site:
7 ventriloquy/metabuild.py
8
9sync:
10 rsync -auvz rendered/ $(WEB_ROOT)
11 chgrp -R www-data $(WEB_ROOT)
12 chmod -R g+r $(WEB_ROOT)
13 find $(WEB_ROOT) -type d -exec chmod g+x {} \;
14
15build-css:
16 python downloads/cmpcss resources/site.css > resources/site-min.css
17 cp resources/site-min.css rendered/resources/site-min.css