From 90d8ccb9bcfd8e3db8d5082352f423b77f532514 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Fri, 7 Jun 2019 18:29:45 +0200 Subject: [PATCH] src/parsestatements/Makefile: Add missing CPPFLAGS and LDFLAGS Spotted by blhc, build log hardening check. --- src/parsestatements/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsestatements/Makefile b/src/parsestatements/Makefile index d2b926b6..efa8e0a6 100644 --- a/src/parsestatements/Makefile +++ b/src/parsestatements/Makefile @@ -16,7 +16,7 @@ all: $(PROG) test scanner.o: scanner.c scanner.h $(PROG): $(PROG).o scanner.o - $(CC) $(CFLAGS) -o $(PROG) test-scanner.c scanner.o + $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(PROG) test-scanner.c scanner.o test-scanner.o: test-scanner.c -- 2.39.5