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

all: shttpd

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

clean:
	rm -f shttpd