]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Mohun Biswas added release-zlib and debug-zlib targets.
authorDaniel Stenberg <daniel@haxx.se>
Wed, 26 May 2004 11:49:28 +0000 (11:49 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 26 May 2004 11:49:28 +0000 (11:49 +0000)
lib/Makefile.vc6

index 9fc4849409af3cfaeb08ef01e980938998b07c97..a7177b8a14ce28d009fa53d65cc9eb3a326bcd79 100644 (file)
@@ -64,6 +64,18 @@ CC     = $(CCNODBG)
 CFGSET = TRUE\r
 !ENDIF\r
 \r
+######################\r
+# release-zlib\r
+\r
+!IF "$(CFG)" == "release-zlib"\r
+TARGET   =$(LIB_NAME).lib\r
+DIROBJ   =.\$(CFG)\r
+LFLAGSZLIB = "/LIBPATH:$(ZLIB_PATH)"\r
+LNK      = $(LNKLIB) $(LFLAGSZLIB) /out:$(TARGET)\r
+CC       = $(CCNODBG) $(CFLAGSZLIB)\r
+CFGSET   = TRUE\r
+!ENDIF\r
+\r
 ######################\r
 # release-dll\r
 \r
@@ -160,6 +172,17 @@ CC       = $(CCDEBUG) $(CFLAGSSSL)
 CFGSET   = TRUE\r
 !ENDIF\r
 \r
+######################\r
+# debug-zlib\r
+!IF "$(CFG)" == "debug-zlib"\r
+TARGET   = $(LIB_NAME_DEBUG).lib\r
+DIROBJ   =.\$(CFG)\r
+LFLAGSZLIB = "/LIBPATH:$(ZLIB_PATH)"\r
+LNK      = $(LNKLIB) $(LFLAGSZLIB) /out:$(TARGET)\r
+CC       = $(CCDEBUG) $(CFLAGSZLIB)\r
+CFGSET   = TRUE\r
+!ENDIF\r
+\r
 ######################\r
 # debug-ssl-dll\r
 \r
@@ -181,12 +204,14 @@ RESOURCE = $(DIROBJ)\libcurl.res
 !MESSAGE where <config> is one of:\r
 !MESSAGE   release          - release static library\r
 !MESSAGE   release-dll      - release dll\r
+!MESSAGE   release-zlib     - release static library with zlib\r
 !MESSAGE   release-ssl      - release static library with ssl\r
 !MESSAGE   release-ssl-zlib - release static library with ssl and zlib\r
 !MESSAGE   release-ssl-dll  - release dll library with ssl\r
 !MESSAGE   release-libcurl-ssl-dll - static libcurl with shared ssl\r
 !MESSAGE   debug            - debug static library\r
 !MESSAGE   debug-dll        - debug dll\r
+!MESSAGE   debug-zlib       - debug static library with zlib\r
 !MESSAGE   debug-ssl        - debug static library with ssl\r
 !MESSAGE   debug-ssl-dll    - debug dll library with ssl\r
 !MESSAGE <target> can be left blank in which case all is assumed\r