darkhttpd/trunk/Makefile
2013-04-28 19:44:12 +10:00

30 lines
502 B
Makefile

#
# darkhttpd (c) 2003, Emil Mikulic.
#
CC?=cc
CFLAGS?=-O
TARGETS = bsd linux solaris
.PHONY: all $(TARGETS)
all:
@echo "+----- ---- --- -- -"
@echo "| Please run:"
@echo "| make <target>"
@echo "| Where target is one of the following:"
@echo "| $(TARGETS)"
@echo "+----- ---- --- -- -"
bsd linux:
make darkhttpd
solaris:
make darkhttpd LIBS="-lxnet -lsendfile"
darkhttpd: darkhttpd.c
$(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o darkhttpd
clean:
rm -f darkhttpd core darkhttpd.core