We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f4728 commit 73b18edCopy full SHA for 73b18ed
Makefile
@@ -1,11 +1,11 @@
1
-CC = cc
+CC? = cc
2
LINK = ld -o
3
CROSS := $(TARGET)
4
MKDEP = $(CROSS)$(CC) -M -o $*.d $<
5
6
LIBRARY_LINK_OPTS = -L. -r
7
-CFLAGS = -O2 -ggdb -std=c99 -D_GNU_SOURCE
8
-CFLAGS += -Wall -Wextra -Wshadow -Wformat-security -Wstrict-prototypes
+CFLAGS ?= -O2 -ggdb
+CFLAGS += -std=c99 -D_GNU_SOURCE -Wall -Wextra -Wshadow -Wformat-security -Wstrict-prototypes
9
RM = /bin/rm -f
10
Q=@
11
0 commit comments