diff options
| author | Federico Angelilli <code@fedang.net> | 2024-05-22 00:05:23 +0200 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-05-22 00:05:23 +0200 |
| commit | 2881783a6d7bc37e03c8639caf8ac0b0876a01c6 (patch) | |
| tree | e8d473cd4c94184d0f701ddad8ac9f6c5f10b4a0 /Makefile | |
| parent | 08cce5d434620275a1b0a7b8726837714d479f01 (diff) | |
Handle lines longer than ANY_INI_BUFFER_SIZE
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
