diff options
author | EuAndreh <eu@euandre.org> | 2024-09-29 16:44:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-09-29 16:44:32 -0300 |
commit | 92929c60473c99dff06ca99cc6161fb2344eb9f7 (patch) | |
tree | 68e56c639f53af3ee2ba7cc9e914d2327fc97898 | |
parent | mkdeps.sh: Remove definition of varlist() (diff) | |
download | golite-92929c60473c99dff06ca99cc6161fb2344eb9f7.tar.gz golite-92929c60473c99dff06ca99cc6161fb2344eb9f7.tar.xz |
Makefile: Fix $(iCFLAGS) variable name typo
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $< |