2015-09-25 13:28:27 +00:00
|
|
|
NAME=zsh-syntax-highlighting
|
|
|
|
|
2015-10-19 06:44:02 +00:00
|
|
|
INSTALL?=install -c
|
2015-09-25 13:28:27 +00:00
|
|
|
PREFIX?=/usr/local
|
|
|
|
SHARE_DIR=$(DESTDIR)$(PREFIX)/share/$(NAME)
|
2015-10-26 14:18:54 +00:00
|
|
|
ZSH?=zsh # zsh binary to run tests with
|
2015-09-25 13:28:27 +00:00
|
|
|
|
2015-10-19 07:08:21 +00:00
|
|
|
# Have the default target do nothing.
|
|
|
|
all:
|
|
|
|
@ :
|
|
|
|
|
2015-09-25 13:28:27 +00:00
|
|
|
install:
|
|
|
|
$(INSTALL) -d $(SHARE_DIR)
|
2015-10-19 07:35:12 +00:00
|
|
|
cp -r .version zsh-syntax-highlighting.zsh highlighters $(SHARE_DIR)
|
|
|
|
if [ x"true" = x"`git rev-parse --is-inside-work-tree 2>/dev/null`" ]; then \
|
|
|
|
git rev-parse HEAD; \
|
|
|
|
else \
|
|
|
|
cat .revision-hash; \
|
|
|
|
fi > $(SHARE_DIR)/.revision-hash
|
2015-09-26 02:29:51 +00:00
|
|
|
|
|
|
|
test:
|
2015-10-20 00:31:40 +00:00
|
|
|
@result=0; \
|
|
|
|
for test in highlighters/*; do \
|
2015-09-26 02:29:51 +00:00
|
|
|
if [ -d $$test/test-data ]; then \
|
|
|
|
echo "Running test $${test##*/}"; \
|
2015-10-26 14:18:54 +00:00
|
|
|
$(ZSH) -f tests/test-highlighting.zsh "$${test##*/}"; \
|
2015-10-19 06:36:42 +00:00
|
|
|
: $$(( result |= $$? )); \
|
2015-09-26 02:29:51 +00:00
|
|
|
fi \
|
2015-10-27 09:55:36 +00:00
|
|
|
done; \
|
2015-10-20 00:31:40 +00:00
|
|
|
exit $$result
|
2015-10-20 00:26:43 +00:00
|
|
|
|
2015-10-27 07:46:51 +00:00
|
|
|
perf:
|
|
|
|
@result=0; \
|
|
|
|
for test in highlighters/*; do \
|
|
|
|
if [ -d $$test/test-data ]; then \
|
|
|
|
echo "Running test $${test##*/}"; \
|
|
|
|
$(ZSH) -f tests/test-perfs.zsh "$${test##*/}"; \
|
|
|
|
: $$(( result |= $$? )); \
|
|
|
|
fi \
|
|
|
|
done; \
|
|
|
|
exit $$result
|
|
|
|
|
2015-10-20 00:26:43 +00:00
|
|
|
.PHONY: all install test
|