Change the makefile a bit

This commit is contained in:
Alexis Métaireau 2013-05-07 23:46:59 +10:00
parent 2a0523659f
commit 4fda4068e4

View file

@ -1,4 +1,10 @@
build: nmi:
pelican -s pelican.conf.py content BLOG_URL="http://blog.notmyidea.org" BLOG_NAME="Alexis' log" pelican -s pelican.conf.py content --output blog
pyc:
BLOG_URL="http://alexis.notmyidea.org/pycon" BLOG_NAME="Pycon notes" pelican -s pelican.conf.py pycon --output pycon-output
build: nmi pyc
upload: build upload: build
rsync -e "ssh -p 22" -P -rvz --delete output/* alexis@172.19.2.119:/home/www/notmyidea.org/blog rsync -e "ssh -p 22" -P -rvz --delete output/* alexis@172.19.2.119:/home/www/notmyidea.org/blog
rsync -e "ssh -p 22" -P -rvz --delete pycon/* alexis@172.19.2.119:/home/www/notmyidea.org/pycon-output