Makefile.netware 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. #################################################################
  2. #
  3. ## Makefile for building curl.nlm (NetWare version - gnu make)
  4. ## Use: make -f Makefile.netware
  5. ##
  6. ## Comments to: Guenter Knauf http://www.gknw.net/phpbb
  7. #
  8. #################################################################
  9. # Edit the path below to point to the base of your Novell NDK.
  10. ifndef NDKBASE
  11. NDKBASE = c:/novell
  12. endif
  13. # Edit the path below to point to the base of your Zlib sources.
  14. ifndef ZLIB_PATH
  15. ZLIB_PATH = ../../../zlib-1.2.8
  16. endif
  17. # Edit the path below to point to the base of your OpenSSL package.
  18. ifndef OPENSSL_PATH
  19. OPENSSL_PATH = ../../../openssl-0.9.8y
  20. endif
  21. # Edit the path below to point to the base of your LibSSH2 package.
  22. ifndef LIBSSH2_PATH
  23. LIBSSH2_PATH = ../../../libssh2-1.4.3
  24. endif
  25. # Edit the path below to point to the base of your axTLS package.
  26. ifndef AXTLS_PATH
  27. AXTLS_PATH = ../../../axTLS-1.2.7
  28. endif
  29. # Edit the path below to point to the base of your libidn package.
  30. ifndef LIBIDN_PATH
  31. LIBIDN_PATH = ../../../libidn-1.18
  32. endif
  33. # Edit the path below to point to the base of your librtmp package.
  34. ifndef LIBRTMP_PATH
  35. LIBRTMP_PATH = ../../../librtmp-2.3
  36. endif
  37. # Edit the path below to point to the base of your fbopenssl package.
  38. ifndef FBOPENSSL_PATH
  39. FBOPENSSL_PATH = ../../fbopenssl-0.4
  40. endif
  41. # Edit the path below to point to the base of your c-ares package.
  42. ifndef LIBCARES_PATH
  43. LIBCARES_PATH = ../../ares
  44. endif
  45. ifndef INSTDIR
  46. INSTDIR = ..$(DS)..$(DS)curl-$(LIBCURL_VERSION_STR)-bin-nw
  47. endif
  48. # Edit the vars below to change NLM target settings.
  49. TARGET = examples
  50. VERSION = $(LIBCURL_VERSION)
  51. COPYR = Copyright (C) $(LIBCURL_COPYRIGHT_STR)
  52. DESCR = cURL ($(LIBARCH))
  53. MTSAFE = YES
  54. STACK = 8192
  55. SCREEN = Example Program
  56. # Comment the line below if you dont want to load protected automatically.
  57. # LDRING = 3
  58. # Uncomment the next line to enable linking with POSIX semantics.
  59. # POSIXFL = 1
  60. # Edit the var below to point to your lib architecture.
  61. ifndef LIBARCH
  62. LIBARCH = LIBC
  63. endif
  64. # must be equal to NDEBUG or DEBUG, CURLDEBUG
  65. ifndef DB
  66. DB = NDEBUG
  67. endif
  68. # Optimization: -O<n> or debugging: -g
  69. ifeq ($(DB),NDEBUG)
  70. OPT = -O2
  71. OBJDIR = release
  72. else
  73. OPT = -g
  74. OBJDIR = debug
  75. endif
  76. # The following lines defines your compiler.
  77. ifdef CWFolder
  78. METROWERKS = $(CWFolder)
  79. endif
  80. ifdef METROWERKS
  81. # MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support
  82. MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
  83. CC = mwccnlm
  84. else
  85. CC = gcc
  86. endif
  87. PERL = perl
  88. # Here you can find a native Win32 binary of the original awk:
  89. # http://www.gknw.net/development/prgtools/awk-20100523.zip
  90. AWK = awk
  91. CP = cp -afv
  92. MKDIR = mkdir
  93. # RM = rm -f
  94. # If you want to mark the target as MTSAFE you will need a tool for
  95. # generating the xdc data for the linker; here's a minimal tool:
  96. # http://www.gknw.net/development/prgtools/mkxdc.zip
  97. MPKXDC = mkxdc
  98. # LIBARCH_U = $(shell $(AWK) 'BEGIN {print toupper(ARGV[1])}' $(LIBARCH))
  99. LIBARCH_L = $(shell $(AWK) 'BEGIN {print tolower(ARGV[1])}' $(LIBARCH))
  100. # Include the version info retrieved from curlver.h
  101. -include $(OBJDIR)/version.inc
  102. # Global flags for all compilers
  103. CFLAGS += $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
  104. ifeq ($(CC),mwccnlm)
  105. LD = mwldnlm
  106. LDFLAGS = -nostdlib $< $(PRELUDE) $(LDLIBS) -o $@ -commandfile
  107. LIBEXT = lib
  108. CFLAGS += -gccinc -inline off -opt nointrinsics -proc 586
  109. CFLAGS += -relax_pointers
  110. #CFLAGS += -w on
  111. ifeq ($(LIBARCH),LIBC)
  112. ifeq ($(POSIXFL),1)
  113. PRELUDE = $(NDK_LIBC)/imports/posixpre.o
  114. else
  115. PRELUDE = $(NDK_LIBC)/imports/libcpre.o
  116. endif
  117. CFLAGS += -align 4
  118. else
  119. # PRELUDE = $(NDK_CLIB)/imports/clibpre.o
  120. # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
  121. PRELUDE = "$(MWCW_PATH)/libraries/runtime/prelude.obj"
  122. # CFLAGS += -include "$(MWCW_PATH)/headers/nlm_clib_prefix.h"
  123. CFLAGS += -align 1
  124. endif
  125. else
  126. LD = nlmconv
  127. LDFLAGS = -T
  128. LIBEXT = a
  129. CFLAGS += -m32
  130. CFLAGS += -fno-builtin -fno-strict-aliasing
  131. ifeq ($(findstring gcc,$(CC)),gcc)
  132. CFLAGS += -fpcc-struct-return
  133. endif
  134. CFLAGS += -Wall # -pedantic
  135. ifeq ($(LIBARCH),LIBC)
  136. ifeq ($(POSIXFL),1)
  137. PRELUDE = $(NDK_LIBC)/imports/posixpre.gcc.o
  138. else
  139. PRELUDE = $(NDK_LIBC)/imports/libcpre.gcc.o
  140. endif
  141. else
  142. # PRELUDE = $(NDK_CLIB)/imports/clibpre.gcc.o
  143. # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
  144. # http://www.gknw.net/development/mk_nlm/gcc_pre.zip
  145. PRELUDE = $(NDK_ROOT)/pre/prelude.o
  146. CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
  147. endif
  148. endif
  149. NDK_ROOT = $(NDKBASE)/ndk
  150. ifndef NDK_CLIB
  151. NDK_CLIB = $(NDK_ROOT)/nwsdk
  152. endif
  153. ifndef NDK_LIBC
  154. NDK_LIBC = $(NDK_ROOT)/libc
  155. endif
  156. ifndef NDK_LDAP
  157. NDK_LDAP = $(NDK_ROOT)/cldapsdk/netware
  158. endif
  159. CURL_INC = ../../include
  160. CURL_LIB = ../../lib
  161. INCLUDES = -I$(CURL_INC)
  162. ifeq ($(findstring -static,$(CFG)),-static)
  163. LINK_STATIC = 1
  164. endif
  165. ifeq ($(findstring -ares,$(CFG)),-ares)
  166. WITH_ARES = 1
  167. endif
  168. ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
  169. WITH_RTMP = 1
  170. WITH_SSL = 1
  171. WITH_ZLIB = 1
  172. endif
  173. ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
  174. WITH_SSH2 = 1
  175. WITH_SSL = 1
  176. WITH_ZLIB = 1
  177. endif
  178. ifeq ($(findstring -axtls,$(CFG)),-axtls)
  179. WITH_AXTLS = 1
  180. WITH_SSL =
  181. else
  182. ifeq ($(findstring -ssl,$(CFG)),-ssl)
  183. WITH_SSL = 1
  184. endif
  185. endif
  186. ifeq ($(findstring -zlib,$(CFG)),-zlib)
  187. WITH_ZLIB = 1
  188. endif
  189. ifeq ($(findstring -idn,$(CFG)),-idn)
  190. WITH_IDN = 1
  191. endif
  192. ifeq ($(findstring -spnego,$(CFG)),-spnego)
  193. WITH_SPNEGO = 1
  194. endif
  195. ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
  196. ENABLE_IPV6 = 1
  197. endif
  198. ifdef LINK_STATIC
  199. LDLIBS = $(CURL_LIB)/libcurl.$(LIBEXT)
  200. ifdef WITH_ARES
  201. LDLIBS += $(LIBCARES_PATH)/libcares.$(LIBEXT)
  202. endif
  203. else
  204. MODULES = libcurl.nlm
  205. IMPORTS = @$(CURL_LIB)/libcurl.imp
  206. endif
  207. ifdef WITH_SSH2
  208. # INCLUDES += -I$(LIBSSH2_PATH)/include
  209. ifdef LINK_STATIC
  210. LDLIBS += $(LIBSSH2_PATH)/nw/libssh2.$(LIBEXT)
  211. else
  212. MODULES += libssh2.nlm
  213. IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp
  214. endif
  215. endif
  216. ifdef WITH_RTMP
  217. # INCLUDES += -I$(LIBRTMP_PATH)
  218. ifdef LINK_STATIC
  219. LDLIBS += $(LIBRTMP_PATH)/librtmp/librtmp.$(LIBEXT)
  220. endif
  221. endif
  222. ifdef WITH_SSL
  223. INCLUDES += -I$(OPENSSL_PATH)/outinc_nw_$(LIBARCH_L)
  224. LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/ssl.$(LIBEXT)
  225. LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/crypto.$(LIBEXT)
  226. IMPORTS += GetProcessSwitchCount RunningProcess
  227. ifdef WITH_SPNEGO
  228. # INCLUDES += -I$(FBOPENSSL_PATH)/include
  229. LDLIBS += $(FBOPENSSL_PATH)/nw/fbopenssl.$(LIBEXT)
  230. endif
  231. else
  232. ifdef WITH_AXTLS
  233. INCLUDES += -I$(AXTLS_PATH)/inc
  234. ifdef LINK_STATIC
  235. LDLIBS += $(AXTLS_PATH)/lib/libaxtls.$(LIBEXT)
  236. else
  237. MODULES += libaxtls.nlm
  238. IMPORTS += $(AXTLS_PATH)/lib/libaxtls.imp
  239. endif
  240. endif
  241. endif
  242. ifdef WITH_ZLIB
  243. # INCLUDES += -I$(ZLIB_PATH)
  244. ifdef LINK_STATIC
  245. LDLIBS += $(ZLIB_PATH)/nw/$(LIBARCH)/libz.$(LIBEXT)
  246. else
  247. MODULES += libz.nlm
  248. IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp
  249. endif
  250. endif
  251. ifdef WITH_IDN
  252. # INCLUDES += -I$(LIBIDN_PATH)/include
  253. LDLIBS += $(LIBIDN_PATH)/lib/libidn.$(LIBEXT)
  254. endif
  255. ifeq ($(LIBARCH),LIBC)
  256. INCLUDES += -I$(NDK_LIBC)/include
  257. # INCLUDES += -I$(NDK_LIBC)/include/nks
  258. # INCLUDES += -I$(NDK_LIBC)/include/winsock
  259. CFLAGS += -D_POSIX_SOURCE
  260. else
  261. INCLUDES += -I$(NDK_CLIB)/include/nlm
  262. # INCLUDES += -I$(NDK_CLIB)/include
  263. endif
  264. ifndef DISABLE_LDAP
  265. # INCLUDES += -I$(NDK_LDAP)/$(LIBARCH_L)/inc
  266. endif
  267. CFLAGS += $(INCLUDES)
  268. ifeq ($(MTSAFE),YES)
  269. XDCOPT = -n
  270. endif
  271. ifeq ($(MTSAFE),NO)
  272. XDCOPT = -u
  273. endif
  274. ifdef XDCOPT
  275. XDCDATA = $(OBJDIR)/$(TARGET).xdc
  276. endif
  277. ifeq ($(findstring /sh,$(SHELL)),/sh)
  278. DL = '
  279. DS = /
  280. PCT = %
  281. #-include $(NDKBASE)/nlmconv/ncpfs.inc
  282. else
  283. DS = \\
  284. PCT = %%
  285. endif
  286. # Makefile.inc provides the CSOURCES and HHEADERS defines
  287. include Makefile.inc
  288. check_PROGRAMS := $(patsubst %,%.nlm,$(strip $(check_PROGRAMS)))
  289. .PRECIOUS: $(OBJDIR)/%.o $(OBJDIR)/%.def $(OBJDIR)/%.xdc
  290. all: prebuild $(check_PROGRAMS)
  291. prebuild: $(OBJDIR) $(OBJDIR)/version.inc
  292. $(OBJDIR)/%.o: %.c
  293. @echo Compiling $<
  294. $(CC) $(CFLAGS) -c $< -o $@
  295. $(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
  296. @echo Creating $@
  297. @$(AWK) -f ../../packages/NetWare/get_ver.awk $< > $@
  298. install: $(INSTDIR) all
  299. @$(CP) $(check_PROGRAMS) $(INSTDIR)
  300. clean:
  301. -$(RM) -r $(OBJDIR)
  302. distclean vclean: clean
  303. -$(RM) $(check_PROGRAMS)
  304. $(OBJDIR) $(INSTDIR):
  305. @$(MKDIR) $@
  306. %.nlm: $(OBJDIR)/%.o $(OBJDIR)/%.def $(XDCDATA)
  307. @echo Linking $@
  308. @-$(RM) $@
  309. @$(LD) $(LDFLAGS) $(OBJDIR)/$(@:.nlm=.def)
  310. $(OBJDIR)/%.xdc: Makefile.netware
  311. @echo Creating $@
  312. @$(MPKXDC) $(XDCOPT) $@
  313. $(OBJDIR)/%.def: Makefile.netware
  314. @echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
  315. @echo $(DL)# Do not edit this file - it is created by Make!$(DL) >> $@
  316. @echo $(DL)# All your changes will be lost!!$(DL) >> $@
  317. @echo $(DL)#$(DL) >> $@
  318. @echo $(DL)copyright "$(COPYR)"$(DL) >> $@
  319. @echo $(DL)description "$(DESCR) $(notdir $(@:.def=)) Example"$(DL) >> $@
  320. @echo $(DL)version $(VERSION)$(DL) >> $@
  321. ifdef NLMTYPE
  322. @echo $(DL)type $(NLMTYPE)$(DL) >> $@
  323. endif
  324. ifdef STACK
  325. @echo $(DL)stack $(STACK)$(DL) >> $@
  326. endif
  327. ifdef SCREEN
  328. @echo $(DL)screenname "$(DESCR) $(notdir $(@:.def=)) $(SCREEN)"$(DL) >> $@
  329. else
  330. @echo $(DL)screenname "DEFAULT"$(DL) >> $@
  331. endif
  332. ifneq ($(DB),NDEBUG)
  333. @echo $(DL)debug$(DL) >> $@
  334. endif
  335. @echo $(DL)threadname "_$(notdir $(@:.def=))"$(DL) >> $@
  336. ifdef XDCDATA
  337. @echo $(DL)xdcdata $(XDCDATA)$(DL) >> $@
  338. endif
  339. ifeq ($(LDRING),0)
  340. @echo $(DL)flag_on 16$(DL) >> $@
  341. endif
  342. ifeq ($(LDRING),3)
  343. @echo $(DL)flag_on 512$(DL) >> $@
  344. endif
  345. ifeq ($(LIBARCH),CLIB)
  346. @echo $(DL)start _Prelude$(DL) >> $@
  347. @echo $(DL)exit _Stop$(DL) >> $@
  348. @echo $(DL)import @$(NDK_CLIB)/imports/clib.imp$(DL) >> $@
  349. @echo $(DL)import @$(NDK_CLIB)/imports/threads.imp$(DL) >> $@
  350. @echo $(DL)import @$(NDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
  351. @echo $(DL)import @$(NDK_CLIB)/imports/socklib.imp$(DL) >> $@
  352. @echo $(DL)module clib$(DL) >> $@
  353. ifndef DISABLE_LDAP
  354. @echo $(DL)import @$(NDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
  355. @echo $(DL)import @$(NDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
  356. # @echo $(DL)import @$(NDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
  357. @echo $(DL)module ldapsdk ldapssl$(DL) >> $@
  358. endif
  359. else
  360. ifeq ($(POSIXFL),1)
  361. @echo $(DL)flag_on 4194304$(DL) >> $@
  362. endif
  363. @echo $(DL)flag_on 64$(DL) >> $@
  364. @echo $(DL)pseudopreemption$(DL) >> $@
  365. ifeq ($(findstring posixpre,$(PRELUDE)),posixpre)
  366. @echo $(DL)start POSIX_Start$(DL) >> $@
  367. @echo $(DL)exit POSIX_Stop$(DL) >> $@
  368. @echo $(DL)check POSIX_CheckUnload$(DL) >> $@
  369. else
  370. @echo $(DL)start _LibCPrelude$(DL) >> $@
  371. @echo $(DL)exit _LibCPostlude$(DL) >> $@
  372. @echo $(DL)check _LibCCheckUnload$(DL) >> $@
  373. endif
  374. @echo $(DL)import @$(NDK_LIBC)/imports/libc.imp$(DL) >> $@
  375. @echo $(DL)import @$(NDK_LIBC)/imports/netware.imp$(DL) >> $@
  376. @echo $(DL)module libc$(DL) >> $@
  377. ifndef DISABLE_LDAP
  378. @echo $(DL)import @$(NDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
  379. @echo $(DL)import @$(NDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
  380. # @echo $(DL)import @$(NDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
  381. @echo $(DL)module lldapsdk lldapssl$(DL) >> $@
  382. endif
  383. endif
  384. ifdef MODULES
  385. @echo $(DL)module $(MODULES)$(DL) >> $@
  386. endif
  387. ifdef EXPORTS
  388. @echo $(DL)export $(EXPORTS)$(DL) >> $@
  389. endif
  390. ifdef IMPORTS
  391. @echo $(DL)import $(IMPORTS)$(DL) >> $@
  392. endif
  393. ifeq ($(findstring nlmconv,$(LD)),nlmconv)
  394. @echo $(DL)input $(PRELUDE)$(DL) >> $@
  395. @echo $(DL)input $(@:.def=.o)$(DL) >> $@
  396. ifdef LDLIBS
  397. @echo $(DL)input $(LDLIBS)$(DL) >> $@
  398. endif
  399. @echo $(DL)output $(notdir $(@:.def=.nlm))$(DL) >> $@
  400. endif