2026-01-08 21:51:55 +02:00
|
|
|
RELEASE_flags=-DNDEBUG -O2 -g0
|
2026-01-08 23:26:49 +02:00
|
|
|
DEBUG_flags=-std=c23 -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og
|
2026-01-08 21:51:55 +02:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
rm -fr bin
|
|
|
|
|
|
|
|
|
|
format:
|
|
|
|
|
clang-format -i test/niconst_test.c
|
|
|
|
|
clang-format -i niconst.h
|
|
|
|
|
|
|
|
|
|
test: bin/test
|
|
|
|
|
bin/niconst_test
|
|
|
|
|
|
2026-01-08 22:06:47 +02:00
|
|
|
.PHONY: clean format test
|
2026-01-08 21:51:55 +02:00
|
|
|
|
|
|
|
|
bin/test: test/niconst_test.c
|
|
|
|
|
mkdir -p bin/test
|
|
|
|
|
cc ${DEBUG_flags} test/niconst_test.c -o bin/niconst_test
|