mirror of git://git.suckless.org/sbase
Use -std=c99 and -pedantic in default config.mk
This commit is contained in:
parent
da215823a3
commit
604b5de69d
|
@ -9,5 +9,5 @@ MANPREFIX = $(PREFIX)/share/man
|
||||||
#CC = musl-gcc
|
#CC = musl-gcc
|
||||||
LD = $(CC)
|
LD = $(CC)
|
||||||
CPPFLAGS = -D_GNU_SOURCE
|
CPPFLAGS = -D_GNU_SOURCE
|
||||||
CFLAGS = -Wall -Wextra $(CPPFLAGS)
|
CFLAGS = -std=c99 -Wall -Wextra -pedantic $(CPPFLAGS)
|
||||||
LDFLAGS = -s -lcrypt # -static
|
LDFLAGS = -s -lcrypt # -static
|
||||||
|
|
Loading…
Reference in New Issue