mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
13 lines
413 B
Makefile
13 lines
413 B
Makefile
ALLWARNS = -Wall -Wtraditional -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
|