aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-09-29 16:44:32 -0300
committerEuAndreh <eu@euandre.org>2024-09-29 16:44:32 -0300
commit92929c60473c99dff06ca99cc6161fb2344eb9f7 (patch)
tree68e56c639f53af3ee2ba7cc9e914d2327fc97898
parentmkdeps.sh: Remove definition of varlist() (diff)
downloadgolite-92929c60473c99dff06ca99cc6161fb2344eb9f7.tar.gz
golite-92929c60473c99dff06ca99cc6161fb2344eb9f7.tar.xz
Makefile: Fix $(iCFLAGS) variable name typo
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 13d9193..a292fd8 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ GOLDFLAGS = -L $(GOLIBDIR)
.SUFFIXES: .go .a .c .o .bin .bin-check
.c.o:
- $(CC) $(iCFLAGS) -o $@ -c $<
+ $(CC) $(CFLAGS) -o $@ -c $<