diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a05aa37 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +SHELL=bash + +.PHONY: generate push all + +all: generate push + +generate: + ./generate.py + +push: + rsync -avuP ./deploy/ quitte:public_html/regex +