diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,7 +1,6 @@ -CC?=cc -CFLAGS?=-O +CC=cc +CFLAGS=-O2 -Wall LIBS=`[ \`uname\` = "SunOS" ] && echo -lsocket -lnsl` - TARGETS = bsd linux solaris .PHONY: all $(TARGETS) @@ -11,4 +10,4 @@ darkhttpd: darkhttpd.c $(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o $@ clean: - rm -f darkhttpd core darkhttpd.core + rm -f darkhttpd |