Andrs Garca updated with the added files etc

This commit is contained in:
Daniel Stenberg 2003-07-25 08:59:55 +00:00
parent 83f249cf65
commit 99c32e460f
2 changed files with 19 additions and 18 deletions

View file

@ -22,7 +22,7 @@ ZLIB_PATH = ../../zlib-1.1.4
########################################################
## Nothing more to do below this line!
INCLUDES = -I. -I.. -I../include
INCLUDES = -I. -I.. -I../include -I$(ZLIB_PATH)
CFLAGS = -g -O2 -DMINGW32
ifdef SSL
CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
@ -41,13 +41,10 @@ else
curl_DEPENDENCIES = ../lib/libcurl.a
curl_LDADD = -L../lib -lcurl
endif
curl_LDADD += -lwsock32 -lws2_32 -lwinmm
curl_LDADD += -lwsock32 -lws2_32 -lwinmm -L$(ZLIB_PATH) -lz
ifdef SSL
curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32
endif
ifdef ZLIB
curl_LDADD += -L$(ZLIB_PATH) -lz
endif
PROGRAMS = $(curl_PROGRAMS)
SOURCES = $(curl_SOURCES)