darkhttpd/trunk/Makefile
2013-04-28 19:40:39 +10:00

13 lines
399 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 = -pipe -ansi -pedantic -g $(ALLWARNS)
all:
gcc -o out $(CFLAGS) darkhttpd.c
splint:
splint -weak -skipposixheaders +posixlib +stats darkhttpd.c