darkhttpd/trunk/Makefile

30 lines
496 B
Makefile
Raw Normal View History

2003-12-13 17:08:36 +03:00
#
# darkhttpd (c) 2003, Emil Mikulic.
#
CC?=cc
CFLAGS?=-pipe -O2
2003-12-13 17:08:36 +03:00
TARGETS = bsd linux solaris
.PHONY: all $(TARGETS)
all:
2003-12-13 17:08:36 +03:00
@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
darkhttpd: darkhttpd.c
$(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o darkhttpd
2003-12-13 17:08:36 +03:00
clean:
rm -f darkhttpd core darkhttpd.core