From 2881783a6d7bc37e03c8639caf8ac0b0876a01c6 Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Wed, 22 May 2024 00:05:23 +0200 Subject: Handle lines longer than ANY_INI_BUFFER_SIZE --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3