Add Makefile

This commit is contained in:
BBaoVanC 2021-03-25 18:42:15 -05:00
parent 168e3a5635
commit 7c568ef4d5
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 12 additions and 0 deletions

12
Makefile Normal file
View File

@ -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