about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorRory Bradford <roryrjb@gmail.com>2021-06-30 17:19:28 +0100
committerRory Bradford <roryrjb@gmail.com>2021-06-30 17:19:28 +0100
commit40ffdae01c377493a6f4ef3e8408bc0c1f9d71ff (patch)
treea9d46459c8209b4c247108deaa3495f2a74fa667 /Makefile
parentf45b62412d70e752a3f5383e77f588665fe0f1bd (diff)
downloadrf-40ffdae01c377493a6f4ef3e8408bc0c1f9d71ff.tar.gz
Fix CFLAGS
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7287b64..a0505b3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,8 @@ BIN = rf
 VERSION = 0.0.5
 OBJS = rf.o ignore.o config.o include/common/strl.o
 PREFIX = /usr/local
-CC = cc
 INCLUDE += -Iinclude/common
-CFLAGS = -std=c99 -pedantic -O2 \
+CFLAGS := -std=c99 -pedantic -O2 \
 	  -Wall -Wextra -Wsign-compare \
 	  -fstack-protector-strong -fpie \
 	  -D_FORTIFY_SOURCE=2 \