RSYNC_FLAGS += \ --verbose \ --compress \ --recursive \ --delete-excluded \ --owner --group \ --chown=cmmm:www-data RSYNC_SRCS = ./pub/ RSYNC_DEST = cmmm@vps:/srv/http/michalec.dev/ .PHONY: all all: translate export publish .PHONY: translate translate: po4a --verbose ./etc/po4a.cfg .PHONY: export export: emacs --quick --script ./bin/export.el .PHONY: publish publish: rsync $(RSYNC_FLAGS) $(RSYNC_SRCS) $(RSYNC_DEST)