diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 00:46:42 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 00:46:42 +0100 |
| commit | 3abc76cce48f3ae66e28ec99af648dc5fdf8bf4a (patch) | |
| tree | 9d17390261bbfe5fcfbf349104a9af85f30e6a9d /Makefile | |
| parent | 52040cc19cbdca48f91d4eb91e9b7a782bb5fbd0 (diff) | |
| download | crep-3abc76cce48f3ae66e28ec99af648dc5fdf8bf4a.tar.gz | |
Add better tests and testing suit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,5 @@ +.PHONY: all query ts-build ts-clean valgrind tests format clean + TARGET = crep SOURCES = $(wildcard *.c *.h) TS_ALIBS = $(shell find vendor -name "*.a" -print) @@ -42,6 +44,9 @@ ts-clean: valgrind: valgrind -s --leak-check=full ./$(TARGET) +tests: $(TARGET) + sh tests.sh + format: clang-format -i *.c *.h |
