diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9d04a74 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: public + +public: clean + hugo + +clean: + rm -rf public + +push: public + rsync -arvz -e 'ssh -p 2222' --progress --delete public/ bbaovanc.com:/var/www/bbaovanc/blog/ + +.PHONY: all clean