aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7c9c247c8844fe6b3c455283d1ddd376e6333cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=cc
CFLAGS=-O2 -Wall
LIBS=`[ \`uname\` = "SunOS" ] && echo -lsocket -lnsl`
TARGETS = bsd linux solaris
.PHONY: all $(TARGETS)

all: darkhttpd

darkhttpd: darkhttpd.c
	$(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o $@

clean:
	rm -f darkhttpd