aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-22 12:07:15 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-22 12:07:15 +0100
commit8375f459638f942d51948d466d9365eaa0c2a500 (patch)
tree0bf55baf94554d0e9a79c6342844696faf55342e /Makefile
parenta4b604c0f7ea0927d40274e6ae15fa710b68aa3e (diff)
downloadcrep-8375f459638f942d51948d466d9365eaa0c2a500.tar.gz
Add Kotlin grammar
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c32deef..16ec9e3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
1.PHONY: all queries tsbuild valgrind tests format clean 1.PHONY: all queries tsbuild valgrind tests format clean
2 2
3TARGET = crep 3TARGET = crep
4SOURCES = $(wildcard *.c *.h) 4SOURCES = $(wildcard *.c *.h queries/*.h)
5TS_ALIBS = $(shell find vendor -name "*.a" -print) 5TS_ALIBS = $(shell find vendor -name "*.a" -print)
6VENDOR_DIRS = $(wildcard vendor/*) 6VENDOR_DIRS = $(wildcard vendor/*)
7CFLAGS = $(EXTRA_FLAGS) -Wall -Wextra -std=gnu99 -pedantic -O3 7CFLAGS = $(EXTRA_FLAGS) -Wall -Wextra -std=gnu99 -pedantic -O3
8LIBS = -I./vendor/tree-sitter/lib/include -lpthread 8LIBS = -I./vendor/tree-sitter/lib/include -lpthread
9 9
10LANGS = c cpp python php go rust javascript lua zig 10LANGS = c cpp python php go rust javascript lua zig kotlin
11QUERY_HEADERS = $(patsubst %, queries/%.h, $(LANGS)) 11QUERY_HEADERS = $(patsubst %, queries/%.h, $(LANGS))
12TS_SUBDIRS = tree-sitter $(patsubst %, tree-sitter-%, $(LANGS)) 12TS_SUBDIRS = tree-sitter $(patsubst %, tree-sitter-%, $(LANGS))
13 13