diff options
author | mutantturkey <mutantturke@gmail.com> | 2012-07-26 11:01:54 -0400 |
---|---|---|
committer | mutantturkey <mutantturke@gmail.com> | 2012-07-26 11:01:54 -0400 |
commit | a17985184ea8d4a1f01accba167c6ea207661469 (patch) | |
tree | 48cb80840946ee129807462af6c5972c4f39be2c /Makefile | |
parent | f70ec013cdb6c5a610487c9c19c397a8d99a3f4d (diff) |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,13 +1,13 @@ CC=cc -CFLAGS=-O2 -Wall +CFLAGS=-O2 -Wall -Wextra LIBS=`[ \`uname\` = "SunOS" ] && echo -lsocket -lnsl` TARGETS = bsd linux solaris .PHONY: all $(TARGETS) -all: darkhttpd +all: shttpd -darkhttpd: darkhttpd.c - $(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o $@ +darkhttpd: shttpd.c + $(CC) $(CFLAGS) $(LIBS) shttpd.c -o $@ clean: - rm -f darkhttpd + rm -f shttpd |