#!/usr/bin/make deployurl = sysadmin@oss.titaniummirror.com:/var/www/ all: webber.conf ./webber profile: ./webber --profile clean: rm -f *.pyc plugins/*.pyc realclean: clean rm -rf out deploy: rsync -avz --delete out/ $(deployurl) # Automatically create webber.conf: ifeq ($(wildcard webber.conf),) webber.conf: in/webber.conf ln -s in/webber.conf endif