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/merge/Makefile
T
2026-07-30 13:18:41 +02:00

28 lines
424 B
Makefile

CFLAGS := -O0 -g -fsanitize=address,undefined -std=c17 -Wmissing-declarations -Wall -Wextra -MMD
EXEC = test1
all: $(EXEC)
test1: test1.c
$(CC) $(CFLAGS) -o $@ $@.c
test: all
@echo
@echo =========================
@echo == merge test
@echo =========================
./test1
-include test1.d
clean:
rm -f *.o *.d $(EXEC)
distclean: clean
format:
clang-format -i *.[ch]
.PHONY: all clean distclean format test