blob: 1c1dff41e152e424422fee0fec3cf472cba8e84f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.PHONY: all install
PREFIX?=/var/empty
all: post-commit
@echo Done
%: %.tmpl %.json
jinja2 --outfile=$@ --format=json $@.tmpl $@.json
install: post-commit
cp post-commit ${PREFIX}/
|