diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f0cd797 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: all install + +PREFIX?=/var/empty + +all: post-receive + @echo Done + +%: %.tmpl %.json + jinja2 --outfile=$@ --format=json $@.tmpl $@.json + +install: post-receive + cp post-receive ${PREFIX}/ |