Makefile.m32 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at http://curl.haxx.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. ###########################################################################
  22. #
  23. ## Makefile for building curl examples with MingW (GCC-3.2 or later)
  24. ## and optionally OpenSSL (0.9.8), libssh2 (1.3), zlib (1.2.5), librtmp (2.3)
  25. ##
  26. ## Usage: mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
  27. ## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-spi-winidn
  28. ##
  29. ## Hint: you can also set environment vars to control the build, f.e.:
  30. ## set ZLIB_PATH=c:/zlib-1.2.8
  31. ## set ZLIB=1
  32. #
  33. ###########################################################################
  34. # Edit the path below to point to the base of your Zlib sources.
  35. ifndef ZLIB_PATH
  36. ZLIB_PATH = ../../../zlib-1.2.8
  37. endif
  38. # Edit the path below to point to the base of your OpenSSL package.
  39. ifndef OPENSSL_PATH
  40. OPENSSL_PATH = ../../../openssl-0.9.8y
  41. endif
  42. # Edit the path below to point to the base of your LibSSH2 package.
  43. ifndef LIBSSH2_PATH
  44. LIBSSH2_PATH = ../../../libssh2-1.4.3
  45. endif
  46. # Edit the path below to point to the base of your librtmp package.
  47. ifndef LIBRTMP_PATH
  48. LIBRTMP_PATH = ../../../librtmp-2.3
  49. endif
  50. # Edit the path below to point to the base of your libidn package.
  51. ifndef LIBIDN_PATH
  52. LIBIDN_PATH = ../../../libidn-1.18
  53. endif
  54. # Edit the path below to point to the base of your MS IDN package.
  55. # Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
  56. # http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ad6158d7-ddba-416a-9109-07607425a815
  57. ifndef WINIDN_PATH
  58. WINIDN_PATH = ../../../Microsoft IDN Mitigation APIs
  59. endif
  60. # Edit the path below to point to the base of your Novell LDAP NDK.
  61. ifndef LDAP_SDK
  62. LDAP_SDK = c:/novell/ndk/cldapsdk/win32
  63. endif
  64. PROOT = ../..
  65. # Edit the path below to point to the base of your c-ares package.
  66. ifndef LIBCARES_PATH
  67. LIBCARES_PATH = $(PROOT)/ares
  68. endif
  69. # Edit the var below to set to your architecture or set environment var.
  70. ifndef ARCH
  71. ARCH = w32
  72. endif
  73. CC = $(CROSSPREFIX)gcc
  74. CFLAGS = -g -O2 -Wall
  75. CFLAGS += -fno-strict-aliasing
  76. ifeq ($(ARCH),w64)
  77. CFLAGS += -D_AMD64_
  78. endif
  79. # comment LDFLAGS below to keep debug info
  80. LDFLAGS = -s
  81. RC = $(CROSSPREFIX)windres
  82. RCFLAGS = --include-dir=$(PROOT)/include -O COFF -i
  83. # Platform-dependent helper tool macros
  84. ifeq ($(findstring /sh,$(SHELL)),/sh)
  85. DEL = rm -f $1
  86. RMDIR = rm -fr $1
  87. MKDIR = mkdir -p $1
  88. COPY = -cp -afv $1 $2
  89. #COPYR = -cp -afr $1/* $2
  90. COPYR = -rsync -aC $1/* $2
  91. TOUCH = touch $1
  92. CAT = cat
  93. ECHONL = echo ""
  94. DL = '
  95. else
  96. ifeq "$(OS)" "Windows_NT"
  97. DEL = -del 2>NUL /q /f $(subst /,\,$1)
  98. RMDIR = -rd 2>NUL /q /s $(subst /,\,$1)
  99. else
  100. DEL = -del 2>NUL $(subst /,\,$1)
  101. RMDIR = -deltree 2>NUL /y $(subst /,\,$1)
  102. endif
  103. MKDIR = -md 2>NUL $(subst /,\,$1)
  104. COPY = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
  105. COPYR = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
  106. TOUCH = copy 2>&1>NUL /b $(subst /,\,$1) +,,
  107. CAT = type
  108. ECHONL = $(ComSpec) /c echo.
  109. endif
  110. ########################################################
  111. ## Nothing more to do below this line!
  112. ifeq ($(findstring -dyn,$(CFG)),-dyn)
  113. DYN = 1
  114. endif
  115. ifeq ($(findstring -ares,$(CFG)),-ares)
  116. ARES = 1
  117. endif
  118. ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
  119. RTMP = 1
  120. SSL = 1
  121. ZLIB = 1
  122. endif
  123. ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
  124. SSH2 = 1
  125. SSL = 1
  126. ZLIB = 1
  127. endif
  128. ifeq ($(findstring -ssl,$(CFG)),-ssl)
  129. SSL = 1
  130. endif
  131. ifeq ($(findstring -zlib,$(CFG)),-zlib)
  132. ZLIB = 1
  133. endif
  134. ifeq ($(findstring -idn,$(CFG)),-idn)
  135. IDN = 1
  136. endif
  137. ifeq ($(findstring -winidn,$(CFG)),-winidn)
  138. WINIDN = 1
  139. endif
  140. ifeq ($(findstring -sspi,$(CFG)),-sspi)
  141. SSPI = 1
  142. endif
  143. ifeq ($(findstring -spnego,$(CFG)),-spnego)
  144. SPNEGO = 1
  145. endif
  146. ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
  147. LDAPS = 1
  148. endif
  149. ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
  150. IPV6 = 1
  151. endif
  152. ifeq ($(findstring -metalink,$(CFG)),-metalink)
  153. METALINK = 1
  154. endif
  155. ifeq ($(findstring -winssl,$(CFG)),-winssl)
  156. SCHANNEL = 1
  157. SSPI = 1
  158. endif
  159. INCLUDES = -I. -I$(PROOT) -I$(PROOT)/include -I$(PROOT)/lib
  160. ifdef DYN
  161. curl_DEPENDENCIES = $(PROOT)/lib/libcurldll.a $(PROOT)/lib/libcurl.dll
  162. curl_LDADD = -L$(PROOT)/lib -lcurldll
  163. else
  164. curl_DEPENDENCIES = $(PROOT)/lib/libcurl.a
  165. curl_LDADD = -L$(PROOT)/lib -lcurl
  166. CFLAGS += -DCURL_STATICLIB
  167. LDFLAGS += -static
  168. endif
  169. ifdef ARES
  170. ifndef DYN
  171. curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
  172. endif
  173. CFLAGS += -DUSE_ARES
  174. curl_LDADD += -L"$(LIBCARES_PATH)" -lcares
  175. endif
  176. ifdef RTMP
  177. CFLAGS += -DUSE_LIBRTMP
  178. curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
  179. endif
  180. ifdef SSH2
  181. CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
  182. curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2
  183. endif
  184. ifdef SSL
  185. ifndef OPENSSL_LIBPATH
  186. OPENSSL_LIBS = -lssl -lcrypto
  187. ifeq "$(wildcard $(OPENSSL_PATH)/out)" "$(OPENSSL_PATH)/out"
  188. OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
  189. ifdef DYN
  190. OPENSSL_LIBS = -lssl32 -leay32
  191. endif
  192. endif
  193. ifeq "$(wildcard $(OPENSSL_PATH)/lib)" "$(OPENSSL_PATH)/lib"
  194. OPENSSL_LIBPATH = $(OPENSSL_PATH)/lib
  195. endif
  196. endif
  197. ifndef DYN
  198. OPENSSL_LIBS += -lgdi32 -lcrypt32
  199. endif
  200. CFLAGS += -DUSE_SSLEAY
  201. curl_LDADD += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
  202. endif
  203. ifdef ZLIB
  204. INCLUDES += -I"$(ZLIB_PATH)"
  205. CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
  206. curl_LDADD += -L"$(ZLIB_PATH)" -lz
  207. endif
  208. ifdef IDN
  209. CFLAGS += -DUSE_LIBIDN
  210. curl_LDADD += -L"$(LIBIDN_PATH)/lib" -lidn
  211. else
  212. ifdef WINIDN
  213. CFLAGS += -DUSE_WIN32_IDN
  214. curl_LDADD += -L"$(WINIDN_PATH)" -lnormaliz
  215. endif
  216. endif
  217. ifdef SSPI
  218. CFLAGS += -DUSE_WINDOWS_SSPI
  219. ifdef SCHANNEL
  220. CFLAGS += -DUSE_SCHANNEL
  221. endif
  222. endif
  223. ifdef SPNEGO
  224. CFLAGS += -DHAVE_SPNEGO
  225. endif
  226. ifdef IPV6
  227. CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
  228. endif
  229. ifdef LDAPS
  230. CFLAGS += -DHAVE_LDAP_SSL
  231. endif
  232. ifdef USE_LDAP_NOVELL
  233. CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
  234. curl_LDADD += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
  235. endif
  236. ifdef USE_LDAP_OPENLDAP
  237. CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
  238. curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
  239. endif
  240. ifndef USE_LDAP_NOVELL
  241. ifndef USE_LDAP_OPENLDAP
  242. curl_LDADD += -lwldap32
  243. endif
  244. endif
  245. curl_LDADD += -lws2_32
  246. # Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
  247. include Makefile.inc
  248. check_PROGRAMS := $(patsubst %,%.exe,$(strip $(check_PROGRAMS)))
  249. check_PROGRAMS += ftpuploadresume.exe synctime.exe
  250. .PRECIOUS: %.o
  251. all: $(check_PROGRAMS)
  252. %.exe: %.o $(curl_DEPENDENCIES)
  253. $(CC) $(LDFLAGS) -o $@ $< $(curl_LDADD)
  254. %.o: %.c
  255. $(CC) $(INCLUDES) $(CFLAGS) -c $<
  256. %.res: %.rc
  257. $(RC) $(RCFLAGS) $< -o $@
  258. clean:
  259. @$(call DEL, $(check_PROGRAMS:.exe=.o))
  260. distclean vclean: clean
  261. @$(call DEL, $(check_PROGRAMS))