diff options
author | Gunter Knauf <gk@gknw.de> | 2007-01-26 20:05:38 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-01-26 20:05:38 +0000 |
commit | 2e6600425ee151b38238f4bfc7c6de8f6ba37c6e (patch) | |
tree | d3ebf252634ccac30780a43412ee0b2c2fcbfe22 /src | |
parent | cc021fc20091a98d8f797f856757423dd20df66c (diff) |
removed CFLAGS from linking.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.m32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 819dfd2fd..9765adef3 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -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 |