darkhttpd/trunk/Makefile
Emil Mikulic 3f6c57ca70 -DNDEBUG
2013-04-28 19:44:11 +10:00

13 lines
411 B
Makefile

ALLWARNS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
-Wcast-align -Wwrite-strings -Wconversion -Waggregate-return \
-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \
-Wredundant-decls -Wnested-externs -Wlong-long -Winline
CFLAGS = -O -pipe -ansi -pedantic -g $(ALLWARNS) -DNDEBUG
all:
gcc -o out $(CFLAGS) darkhttpd.c
splint:
splint -weak -skipposixheaders +posixlib +stats darkhttpd.c