all: development production: clean JEKYLL_ENV=production bundle exec jekyll build development: clean JEKYLL_ENV=development bundle exec jekyll build .PHONY: clean clean: bundle exec jekyll clean rm -f ipfs.tar make_push_to_server: production rsync -av _site/ w019f723.kasserver.com:/www/htdocs/w019f723/blog.uvokchee.de/ watch: clean bundle exec jekyll serve -l --drafts # brute-force making URLs relative for IPFS ipfs: clean JEKYLL_ENV=ipfs bundle exec jekyll build cd _site && cp all.html index.html && rm google* && sed -i -e 's|="/|="|g' *.html && tar cvf ../ipfs.tar $$(grep -L redirect *.html) assets index.html