From 01511920e26c5c5bfe6c2e746d67e31ed84b542c Mon Sep 17 00:00:00 2001 From: Andrew Jeffery Date: Mon, 18 Dec 2017 12:23:27 +1030 Subject: [PATCH] Makefile: Fix CFLAGS variable name CCFLAGS is non-standard, and thus ignored now that standard make rules are used. Signed-off-by: Andrew Jeffery --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c8f10ab..b6f6f2d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CCFLAGS = -Wall -Wshadow -O2 -g +CFLAGS = -Wall -Wshadow -O2 -g LDLIBS = -lm