-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
55 lines (39 loc) · 2.51 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
CORPUS_VERSION=v4.13.1
GRAMMAR_VERSION=v0.4.1
EXAMPLES_DIR=./examples
RELEASE_PREFIX=https://github.com/gap-system/tree-sitter-gaptst/releases/download
.PHONY: compile format corpus test_quick test_gap test_pkg test_all clean distclean
compile: grammar.js src/scanner.c
tree-sitter generate --no-bindings
format:
npm run format
corpus:
./etc/extract_corpus.sh -v $(CORPUS_VERSION) temp_extract_corpus
mv ./temp_extract_corpus/corpus_gap_tst.tar.gz $(EXAMPLES_DIR)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz
mv ./temp_extract_corpus/corpus_pkg_tst.tar.gz $(EXAMPLES_DIR)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz
$(EXAMPLES_DIR)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz:
curl -L $(RELEASE_PREFIX)/$(GRAMMAR_VERSION)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz > $(EXAMPLES_DIR)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz
$(EXAMPLES_DIR)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz:
curl -L $(RELEASE_PREFIX)/$(GRAMMAR_VERSION)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz > $(EXAMPLES_DIR)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz
$(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION): $(EXAMPLES_DIR)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz
mkdir -p $(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION)
tar -xzf $(EXAMPLES_DIR)/corpus_gap_tst_$(CORPUS_VERSION).tar.gz -C $(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION)
$(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION): $(EXAMPLES_DIR)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz
mkdir -p $(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION)
tar -xzf $(EXAMPLES_DIR)/corpus_pkg_tst_$(CORPUS_VERSION).tar.gz -C $(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION)
test_quick: compile
tree-sitter test
test_gap: $(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION) compile
tree-sitter parse '$(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION)/*.tst' --quiet --stat
test_pkg: $(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION) compile
tree-sitter parse '$(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION)/*.tst' --quiet --stat
test_all: test_quick $(EXAMPLES_DIR)/temp_corpus_gap_tst_$(CORPUS_VERSION) $(EXAMPLES_DIR)/temp_corpus_pkg_tst_$(CORPUS_VERSION)
tree-sitter parse '$(EXAMPLES_DIR)/temp_corpus_*/*.tst' --quiet --stat
image-example-parse.svg: grammar.js src/scanner.c ./etc/visualize_parse_tree.py ./examples/alternating_group.tst
./etc/visualize_parse_tree.py -i ./examples/alternating_group.tst -o ./image-example-parse.svg
clean:
rm -rf $(EXAMPLES_DIR)/temp_*
distclean: clean
rm $(EXAMPLES_DIR)/corpus_gap_tst_*.tar.gz
rm $(EXAMPLES_DIR)/corpus_pkg_tst_*.tar.gz
rm -rf ./temp_*