diff options
author | makefu <root@pigstarter.de> | 2013-12-30 14:34:38 +0100 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-12-30 14:34:38 +0100 |
commit | 08aa5e406a1f7b39182e79ea4eb7fabf7d61eaa3 (patch) | |
tree | 2db1a54f336167cc3cc3d5f74c77d029fe7e7470 /assets/Makefile | |
parent | 133e49566c74f1d21c28536ed31d1514725ed49b (diff) |
//Cancer -> //
because that is what painload is all about
Diffstat (limited to 'assets/Makefile')
-rw-r--r-- | assets/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/assets/Makefile b/assets/Makefile new file mode 100644 index 00000000..07efde82 --- /dev/null +++ b/assets/Makefile @@ -0,0 +1,11 @@ + +hooks := pre-commit +binaries := $(shell ls bin/) +.PHONY: all + +all: $(addprefix ../db/.git/hooks/,$(hooks)) $(addprefix ../bin/,$(binaries)) + +../bin/%: bin/% + cp $< $@ +../db/.git/hooks/%: hooks/% + cp $< $@ |