From 4becfb868e0016bea44060ec25f5357e6b2b6407 Mon Sep 17 00:00:00 2001 From: omicron Date: Sun, 30 Mar 2025 22:07:35 +0200 Subject: [PATCH] Reduce excessive line length in Makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7906077..6d2cf6f 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,12 @@ fuzz: afl-fuzz -i tests/input -o reports/afl -m none -- ./oas-afl -tokens @@ sanitize: - make CFLAGS="$(CFLAGS) -fsanitize=address,undefined" LDFLAGS="-fsanitize=address,undefined" TARGET="oas-asan" clean-objects all - make CFLAGS="$(CFLAGS) -fsanitize=memory -fsanitize-memory-track-origins=2" LDFLAGS="-fsanitize=memory -fsanitize-memory-track-origins=2" TARGET="oas-msan" clean-objects all + make CFLAGS="$(CFLAGS) -fsanitize=address,undefined" \ + LDFLAGS="-fsanitize=address,undefined" \ + TARGET="oas-asan" clean-objects all + make CFLAGS="$(CFLAGS) -fsanitize=memory -fsanitize-memory-track-origins=2" \ + LDFLAGS="-fsanitize=memory -fsanitize-memory-track-origins=2" \ + TARGET="oas-msan" clean-objects all make clean-objects validate: