aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-05-22 00:05:23 +0200
committerFederico Angelilli <code@fedang.net>2024-05-22 00:05:23 +0200
commit2881783a6d7bc37e03c8639caf8ac0b0876a01c6 (patch)
treee8d473cd4c94184d0f701ddad8ac9f6c5f10b4a0 /Makefile
parent08cce5d434620275a1b0a7b8726837714d479f01 (diff)
Handle lines longer than ANY_INI_BUFFER_SIZE
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5387d1f..b4f457c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,14 @@
SRCS = $(wildcard test/*.c)
TESTS = $(SRCS:.c=)
+.PHONY: all
+
all: tests
tests: $(TESTS)
%: %.c
- $(CC) -I. $< -o $@
+ $(CC) -I. $< -o $@ -ggdb
clean:
rm -rf $(TESTS)