Makefile improvements

This commit is contained in:
BBaoVanC 2021-03-26 19:00:26 -05:00
parent afcaa99cf5
commit 3a8b1c6a8d
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
all: public
public: clean
public:
hugo
clean:
rm -rf public
push: public
push: clean public
rsync -arvz -e 'ssh -p 2222' --progress --delete public/ bbaovanc.com:/var/www/bbaovanc/blog/
.PHONY: all clean
.PHONY: all clean push