darkhttpd/trunk/Makefile

13 lines
402 B
Makefile
Raw Normal View History

2003-11-18 11:07:51 +03:00
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)
all:
gcc -o out $(CFLAGS) darkhttpd.c
splint:
splint -weak -skipposixheaders +posixlib +stats darkhttpd.c