# # darkhttpd (c) 2003, Emil Mikulic. # CC ?= cc CFLAGS ?= -pipe -O2 TARGETS = bsd linux solaris .PHONY: all $(TARGETS) all: @echo "+----- ---- --- -- -" @echo "| Please run:" @echo "| make " @echo "| Where target is one of the following:" @echo "| $(TARGETS)" @echo "+----- ---- --- -- -" bsd linux: make darkhttpd solaris: make darkhttpd LIBS=-lxnet darkhttpd: darkhttpd.c $(CC) $(CFLAGS) $(LIBS) $< -o $@ clean: rm -f darkhttpd core darkhttpd.core