2005-01-08 11:06:37 -05:00
|
|
|
#
|
|
|
|
# Watcom / OpenWatcom / Win32 makefile for cURL.
|
2007-12-09 04:58:56 -05:00
|
|
|
# G. Vanem <gvanem@broadpark.no>
|
2005-01-08 11:06:37 -05:00
|
|
|
#
|
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
!ifndef %watcom
|
|
|
|
!error WATCOM environment variable not set!
|
|
|
|
!else
|
|
|
|
SYS_INCL = -I$(%watcom)\h\nt -I$(%watcom)\h
|
|
|
|
SYS_LIBS = $(%watcom)\lib386\nt;$(%watcom)\lib386
|
|
|
|
!endif
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
TARGETS = libcurl_wc.dll libcurl_wc_imp.lib libcurl_wc.lib
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
CC = wcc386
|
|
|
|
LD = wlink
|
|
|
|
RC = wrc
|
|
|
|
AR = wlib
|
|
|
|
|
|
|
|
!ifdef __LOADDLL__
|
|
|
|
! loaddll wcc386 wccd386
|
|
|
|
! loaddll wpp386 wppd386
|
|
|
|
! loaddll wlink wlinkd
|
|
|
|
! loaddll wlib wlibd
|
|
|
|
!endif
|
|
|
|
|
|
|
|
MD = mkdir
|
|
|
|
RM = del /q /f >NUL 2>&1
|
|
|
|
RD = rmdir /q /s >NUL 2>&1
|
|
|
|
CP = copy
|
|
|
|
|
|
|
|
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
|
|
|
|
-wcd=201 -bt=nt -d+ -dWIN32 -dHAVE_STRTOLL &
|
|
|
|
-I..\include -I..\lib $(SYS_INCL)
|
|
|
|
|
|
|
|
!ifdef %debug
|
|
|
|
DEBUG = -dDEBUG=1 -dDEBUGBUILD
|
|
|
|
CFLAGS += -d3 $(DEBUG)
|
|
|
|
!else
|
|
|
|
CFLAGS += -d0
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifdef %use_ipv6
|
|
|
|
CFLAGS += -d_WIN32_WINNT=0x0501 -dENABLE_IPV6
|
|
|
|
!endif
|
|
|
|
|
|
|
|
OBJ_DIR = WC_Win32.obj
|
|
|
|
LINK_ARG = $(OBJ_DIR)\wlink.arg
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2010-02-03 18:07:11 -05:00
|
|
|
# Unfortunately, we can't include Makefile.inc here because wmake doesn't
|
|
|
|
# use backslash as the line continuation character by default
|
|
|
|
CURL_SOURCES = main.c hugehelp.c urlglob.c writeout.c writeenv.c &
|
|
|
|
getpass.c homedir.c curlutil.c os-specific.c
|
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
CURLX_SOURCES = rawstr.c nonblock.c
|
2010-02-03 18:07:11 -05:00
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
OBJS = $(CURL_SOURCES:.c=.obj)
|
|
|
|
!ifndef %curl_static
|
|
|
|
CFLAGS += -DCURL_STATICLIB
|
|
|
|
OBJS += $(CURLX_SOURCES:.c=.obj)
|
|
|
|
!endif
|
2010-02-03 18:07:11 -05:00
|
|
|
OBJS = $OBJ_DIR\$(OBJS: = $OBJ_DIR\)
|
2005-01-08 11:06:37 -05:00
|
|
|
|
|
|
|
RESOURCE = $(OBJ_DIR)\curl.res
|
|
|
|
|
|
|
|
all: hugehelp.c $(OBJ_DIR) curl.exe .SYMBOLIC
|
|
|
|
@echo Welcome to cURL
|
|
|
|
|
|
|
|
hugehelp.c: hugehelp.c.cvs
|
2010-07-28 21:18:40 -04:00
|
|
|
$(CP) $[@ $^@
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
hugehelp.c.cvs: .EXISTSONLY
|
|
|
|
$(CP) hugehelp.c $^@
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2010-07-28 21:18:40 -04:00
|
|
|
$(OBJ_DIR):
|
|
|
|
-$(MD) $^@
|
|
|
|
|
|
|
|
curl.exe: $(OBJS) $(RESOURCE) $(LINK_ARG)
|
|
|
|
$(LD) name $^@ @$(LINK_ARG)
|
|
|
|
|
|
|
|
$(LINK_ARG): $(__MAKEFILES__)
|
|
|
|
%create $^@
|
|
|
|
@%append $^@ system nt
|
|
|
|
@%append $^@ file { $(OBJS) }
|
|
|
|
@%append $^@ option quiet, map, caseexact, eliminate,
|
|
|
|
@%append $^@ res=$(RESOURCE) libpath $(SYS_LIBS)
|
|
|
|
# @%append $^@ library clib3r.lib
|
|
|
|
!ifdef %curl_static
|
|
|
|
@%append $^@ library ..\lib\libcurl_wc.lib
|
|
|
|
!else
|
|
|
|
@%append $^@ library ..\lib\libcurl_wc_imp.lib
|
|
|
|
!endif
|
|
|
|
!ifeq USE_WATT32 1
|
|
|
|
@%append $^@ library $(%watt_root)\lib\wattcpw_imp.lib
|
|
|
|
!else
|
|
|
|
@%append $^@ library ws2_32.lib
|
|
|
|
!endif
|
2005-01-08 11:06:37 -05:00
|
|
|
|
|
|
|
clean: .SYMBOLIC
|
2010-07-28 21:18:40 -04:00
|
|
|
-$(RM) $(OBJS)
|
|
|
|
-$(RM) $(RESOURCE) $(LINK_ARG)
|
2005-01-08 11:06:37 -05:00
|
|
|
|
|
|
|
vclean realclean: clean .SYMBOLIC
|
2010-07-28 21:18:40 -04:00
|
|
|
-$(RD) $(OBJ_DIR)
|
|
|
|
-$(RM) curl.exe curl.map hugehelp.c
|
2005-01-08 11:06:37 -05:00
|
|
|
|
|
|
|
$(RESOURCE): curl.rc
|
2010-07-28 21:18:40 -04:00
|
|
|
$(RC) $(DEBUG) -q -r -zm -I..\include $(SYS_INCL) $[@ -fo=$^@
|
2005-01-08 11:06:37 -05:00
|
|
|
|
|
|
|
.ERASE
|
|
|
|
.c{$(OBJ_DIR)}.obj:
|
2010-07-28 21:18:40 -04:00
|
|
|
$(CC) $(CFLAGS) $[@ -fo=$^@
|
2005-01-08 11:06:37 -05:00
|
|
|
|
2008-10-27 11:47:59 -04:00
|
|
|
.ERASE
|
|
|
|
$(OBJ_DIR)\rawstr.obj: ..\lib\rawstr.c
|
2010-07-28 21:18:40 -04:00
|
|
|
$(CC) $(CFLAGS) $[@ -fo=$^@
|
2008-10-27 11:47:59 -04:00
|
|
|
|
2009-07-15 17:49:47 -04:00
|
|
|
.ERASE
|
|
|
|
$(OBJ_DIR)\nonblock.obj: ..\lib\nonblock.c
|
2010-07-28 21:18:40 -04:00
|
|
|
$(CC) $(CFLAGS) $[@ -fo=$^@
|
2009-07-15 17:49:47 -04:00
|
|
|
|
2005-01-12 10:32:41 -05:00
|
|
|
#
|
|
|
|
# Dependencies based on "gcc -MM .."
|
|
|
|
#
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\getpass.obj: getpass.c setup.h config-win32.h ..\lib\setup_once.h getpass.h &
|
|
|
|
..\lib\memdebug.h ..\lib\setup.h ..\lib\config-win32.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h &
|
|
|
|
..\include\curl\curlrules.h ..\include\curl\easy.h &
|
2005-01-12 10:32:41 -05:00
|
|
|
..\include\curl\multi.h ..\include\curl\curl.h
|
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\homedir.obj: homedir.c setup.h config-win32.h ..\lib\setup_once.h homedir.h &
|
|
|
|
..\lib\memdebug.h ..\lib\setup.h ..\lib\config-win32.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h &
|
|
|
|
..\include\curl\curlrules.h ..\include\curl\easy.h &
|
2005-01-12 10:32:41 -05:00
|
|
|
..\include\curl\multi.h ..\include\curl\curl.h
|
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\hugehelp.obj: hugehelp.c
|
2005-01-12 10:32:41 -05:00
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\main.obj: main.c setup.h config-win32.h ..\lib\setup_once.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h &
|
2005-01-12 10:32:41 -05:00
|
|
|
..\include\curl\easy.h ..\include\curl\multi.h ..\include\curl\curl.h &
|
2008-08-13 03:30:21 -04:00
|
|
|
urlglob.h writeout.h getpass.h homedir.h curlutil.h hugehelp.h &
|
|
|
|
version.h ..\include\curl\curlver.h ..\lib\curlx.h &
|
|
|
|
..\include\curl\mprintf.h ..\lib\strequal.h ..\lib\strtoofft.h &
|
|
|
|
..\lib\setup.h ..\lib\config-win32.h ..\include\curl\curlbuild.h &
|
2009-06-05 12:14:50 -04:00
|
|
|
..\include\curl\curlrules.h ..\lib\timeval.h ..\lib\memdebug.h &
|
|
|
|
os-specific.h
|
2008-08-13 03:30:21 -04:00
|
|
|
|
|
|
|
$(OBJ_DIR)\urlglob.obj: urlglob.c setup.h config-win32.h ..\lib\setup_once.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h &
|
2005-01-12 10:32:41 -05:00
|
|
|
..\include\curl\easy.h ..\include\curl\multi.h ..\include\curl\curl.h &
|
2008-08-13 03:30:21 -04:00
|
|
|
..\include\curl\mprintf.h urlglob.h ..\lib\memdebug.h ..\lib\setup.h &
|
|
|
|
..\lib\config-win32.h ..\include\curl\curlbuild.h &
|
2009-06-05 12:14:50 -04:00
|
|
|
..\include\curl\curlrules.h os-specific.h
|
2005-01-12 10:32:41 -05:00
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\writeenv.obj: writeenv.c setup.h config-win32.h ..\lib\setup_once.h
|
2005-01-12 10:32:41 -05:00
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\writeout.obj: writeout.c setup.h config-win32.h ..\lib\setup_once.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h &
|
2005-01-12 10:32:41 -05:00
|
|
|
..\include\curl\easy.h ..\include\curl\multi.h ..\include\curl\curl.h &
|
|
|
|
..\include\curl\mprintf.h writeout.h
|
2005-10-27 08:56:05 -04:00
|
|
|
|
2008-08-13 03:30:21 -04:00
|
|
|
$(OBJ_DIR)\curlutil.obj: curlutil.c setup.h config-win32.h ..\lib\setup_once.h &
|
|
|
|
curlutil.h
|
2008-10-27 11:47:59 -04:00
|
|
|
|
2009-06-05 12:14:50 -04:00
|
|
|
$(OBJ_DIR)\os-specific.obj: os-specific.c os-specific.h setup.h config-win32.h &
|
|
|
|
..\lib\setup_once.h
|
|
|
|
|
2008-10-27 11:47:59 -04:00
|
|
|
$(OBJ_DIR)\rawstr.obj: ..\lib\rawstr.c ..\lib\setup.h ..\lib\config-win32.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h ..\lib\setup_once.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h ..\include\curl\curlrules.h &
|
|
|
|
..\include\curl\easy.h ..\include\curl\multi.h ..\include\curl\curl.h &
|
|
|
|
..\lib\strerror.h ..\lib\urldata.h ..\lib\cookie.h ..\lib\formdata.h &
|
|
|
|
..\lib\timeval.h ..\lib\http_chunks.h ..\lib\hostip.h ..\lib\hash.h &
|
|
|
|
..\lib\llist.h ..\lib\splay.h ..\include\curl\mprintf.h
|
2009-07-15 17:49:47 -04:00
|
|
|
|
|
|
|
$(OBJ_DIR)\nonblock.obj: ..\lib\nonblock.c ..\lib\setup.h ..\lib\config-win32.h &
|
|
|
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h ..\lib\setup_once.h &
|
|
|
|
..\include\curl\curl.h ..\include\curl\curlver.h ..\include\curl\curlrules.h &
|
|
|
|
..\include\curl\easy.h ..\include\curl\multi.h ..\include\curl\curl.h &
|
|
|
|
..\lib\strerror.h ..\lib\urldata.h ..\lib\cookie.h ..\lib\formdata.h &
|
|
|
|
..\lib\timeval.h ..\lib\http_chunks.h ..\lib\hostip.h ..\lib\hash.h &
|
|
|
|
..\lib\llist.h ..\lib\splay.h ..\include\curl\mprintf.h ..\lib\nonblock.h
|
2010-07-28 21:18:40 -04:00
|
|
|
|