summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c4ec139..54896fb 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,13 @@
2 2
3TARGET = crep 3TARGET = crep
4ABI_CHECK_TARGET = abicheck 4ABI_CHECK_TARGET = abicheck
5SOURCES = $(filter-out check.c, $(wildcard *.c *.h queries/*.h)) 5SOURCES = $(filter-out check.c abicheck.c, $(wildcard *.c *.h queries/*.h))
6TS_ALIBS = $(shell find vendor -name "*.a" -print) 6TS_ALIBS = $(shell find vendor -name "*.a" -print)
7VENDOR_DIRS = $(wildcard vendor/*) 7VENDOR_DIRS = $(wildcard vendor/*)
8CFLAGS = $(EXTRA_FLAGS) -Wall -Wextra -std=gnu99 -pedantic -O3 8CFLAGS = $(EXTRA_FLAGS) -Wall -Wextra -std=gnu99 -pedantic -O3
9LIBS = -I./vendor/tree-sitter/lib/include -lpthread 9LIBS = -I./vendor/tree-sitter/lib/include -lpthread
10 10
11LANGS = c cpp python php go rust javascript lua zig kotlin odin tcl 11LANGS = c cpp python php go rust javascript lua zig kotlin odin tcl glsl
12QUERY_HEADERS = $(patsubst %, queries/%.h, $(LANGS)) 12QUERY_HEADERS = $(patsubst %, queries/%.h, $(LANGS))
13TS_SUBDIRS = tree-sitter $(patsubst %, tree-sitter-%, $(LANGS)) 13TS_SUBDIRS = tree-sitter $(patsubst %, tree-sitter-%, $(LANGS))
14 14