This Makefile sync current local working folder with the remote folder.
When working on a server, I always want to edit files locally and then
push them to servers to run. However I do not want to track what
files I just changed and push them one by one using SFTP. rsync
solves this issue elegantly.
Concretely, when I'm finishing editing files locally, I just type
make
the changed files will be synced to remote folers. Whenever I want to fetch result from remote folders
make get
include-get.txt
and include-put.txt
controls what files I want to
push to and fetch from servers. Refer to rsync
manuals for details.