removed CFLAGS from linking.

This commit is contained in:
Gunter Knauf 2007-01-26 20:05:38 +00:00
parent cc021fc200
commit 2e6600425e

View File

@ -36,7 +36,7 @@ INCLUDES = -I. -I.. -I../include -I../lib -I$(ZLIB_PATH)
CFLAGS = -g -O2
LDFLAGS =
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
LINK = $(CC) $(LDFLAGS) -o $@
curl_PROGRAMS = curl.exe
ifdef DYN