darkhttpd/Makefile

14 lines
230 B
Makefile
Raw Normal View History

CC?=cc
2004-12-27 12:54:54 +00:00
CFLAGS?=-O
LIBS=`[ \`uname\` = "SunOS" ] && echo -lsocket -lnsl`
2003-12-13 14:08:36 +00:00
2006-12-14 10:10:46 +00:00
all: darkhttpd
2003-12-13 14:08:36 +00:00
darkhttpd: darkhttpd.c
$(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) darkhttpd.c -o $@
2003-12-13 14:08:36 +00:00
clean:
rm -f darkhttpd core darkhttpd.core
2013-06-10 08:53:19 +00:00
.PHONY: all clean