diff --git a/README.md b/README.md index a5166b3..f869b96 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # relearn2021 -Relearn 2021 website \ No newline at end of file +Relearn 2021 website + +Deploy with `make`. diff --git a/makefile b/makefile new file mode 100644 index 0000000..e8e6c35 --- /dev/null +++ b/makefile @@ -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)