Add a simple makefile for pushing and rebuilding easily

This commit is contained in:
R. Tyler Croy 2011-05-18 21:30:06 -07:00
parent d69a041c54
commit 1eed75e163
2 changed files with 11 additions and 1 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
all:
echo ">> Building the site"
jekyll && notify-send "Site rebuilt!"
publish: all
rsync -acvz --delete _site/ clam:www.unethicalblogger.com/htdocs/
notify-send "Site deployed!"

View File

@ -3,4 +3,4 @@ tag_page_dir: tag
paginate: 20
lsi: false
url: http://unethicalblogger.com
exclude: ['README.markdown', 'drupal.rb', 'sync.sh']
exclude: ['README.markdown', 'drupal.rb', 'sync.sh', 'Makefile']