compile with -Wextra for now - sdhcp - simple dhcp client | |
git clone git://git.codemadness.org/sdhcp | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 176aad994ae2ddf0603b572ae57b88bfbed5708a | |
parent 875f71857e85ec86a1903f4622a1de62d4882800 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 25 Apr 2014 22:22:18 +0200 | |
compile with -Wextra for now | |
Signed-off-by: Hiltjo Posthuma <[email protected]> | |
Diffstat: | |
M config.mk | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.mk b/config.mk | |
@@ -9,5 +9,5 @@ MANPREFIX = $(PREFIX)/share/man | |
#CC = musl-gcc | |
LD = $(CC) | |
CPPFLAGS = -D_BSD_SOURCE | |
-CFLAGS = -g -Wall -ansi $(CPPFLAGS) | |
+CFLAGS = -g -Wall -Wextra -O0 -ansi $(CPPFLAGS) | |
LDFLAGS = -g |