From c4f78a124cb0f7fa472cfbb04ae2b36c5ba6a1d3 Mon Sep 17 00:00:00 2001 From: Emil Mikulic Date: Sat, 13 Dec 2003 14:19:06 +0000 Subject: [PATCH] [ darkhttpd-1.1 release ] Make the Makefile work with Solaris make(1S) --- trunk/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/trunk/Makefile b/trunk/Makefile index 542c16d..a8ba069 100644 --- a/trunk/Makefile +++ b/trunk/Makefile @@ -2,8 +2,8 @@ # darkhttpd (c) 2003, Emil Mikulic. # -CC ?= cc -CFLAGS ?= -pipe -O2 +CC?=cc +CFLAGS?=-pipe -O2 TARGETS = bsd linux solaris .PHONY: all $(TARGETS) @@ -23,7 +23,7 @@ solaris: make darkhttpd LIBS=-lxnet darkhttpd: darkhttpd.c - $(CC) $(CFLAGS) $(LIBS) $< -o $@ + $(CC) $(CFLAGS) $(LIBS) darkhttpd.c -o darkhttpd clean: rm -f darkhttpd core darkhttpd.core