Add makefile

This commit is contained in:
decentral1se 2021-06-02 10:13:07 +02:00
parent c95eb74d34
commit cf59d9ee88
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# relearn2021
Relearn 2021 website
Relearn 2021 website
Deploy with `make`.

8
makefile Normal file
View File

@ -0,0 +1,8 @@
REMOTE := relearn.be:/home/relearn/relearn.be/relearn.2021.be/html/;
RSYNC := rsync -chavzP
SRC := .
default: publish
publish:
$(RSYNC) $(SRC) $(REMOTE)