darkhttpd/trunk/Makefile

13 lines
411 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
2003-11-28 08:08:21 +03:00
CFLAGS = -O -pipe -ansi -pedantic -g $(ALLWARNS) -DNDEBUG
all:
gcc -o out $(CFLAGS) darkhttpd.c
splint:
splint -weak -skipposixheaders +posixlib +stats darkhttpd.c