This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
K1NG-Driver/includes/tomlc17-R260618/test/scanvalue/Makefile
T
2026-07-30 13:18:41 +02:00

22 lines
336 B
Makefile

CFLAGS := -O0 -g -fsanitize=address,undefined -std=c17 -Wmissing-declarations -Wall -Wextra -MMD
all: driver
driver: scanvalue.c
$(CC) $(CFLAGS) -o $@ scanvalue.c -lm
test: all
bash run.sh
-include driver.d
clean:
rm -f *.o *.d driver
distclean: clean
format:
clang-format -i *.[ch]
.PHONY: all clean distclean format test