mirror of
https://github.com/curl/curl.git
synced 2026-07-24 03:27:22 +03:00
Added nonblock.c to the non-automake makefiles (note that the dependencies
in the Watcom makefiles aren't quite correct).
This commit is contained in:
parent
b4dcbbfabd
commit
b74b5e0602
12 changed files with 49 additions and 7 deletions
|
|
@ -52,6 +52,10 @@ $(RESOURCE): curl.rc
|
|||
$(OBJ_DIR)\rawstr.obj: ..\lib\rawstr.c
|
||||
$(CC) $[@ $(CFLAGS) -fo=$@
|
||||
|
||||
.ERASE
|
||||
$(OBJ_DIR)\nonblock.obj: ..\lib\nonblock.c
|
||||
$(CC) $[@ $(CFLAGS) -fo=$@
|
||||
|
||||
#
|
||||
# Dependencies based on "gcc -MM .."
|
||||
#
|
||||
|
|
@ -111,3 +115,11 @@ $(OBJ_DIR)\rawstr.obj: ..\lib\rawstr.c ..\lib\setup.h ..\lib\config-win32.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
|
||||
|
||||
$(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
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# Contact: easygcc@melotech.co.uk
|
||||
|
||||
# Project objects:
|
||||
objs = o.hugehelp o.main o.urlglob o.writeout o.writeenv o.rawstr
|
||||
objs = o.hugehelp o.main o.urlglob o.writeout o.writeenv o.rawstr o.nonblock
|
||||
|
||||
|
||||
# Compile options:
|
||||
|
|
@ -37,6 +37,9 @@ o.writeenv: c.writeenv
|
|||
o.rawstr: ../lib/c.rawstr
|
||||
gcc $(compileropts) -c -o rawstr.o ../lib/c.rawstr
|
||||
|
||||
o.nonblock: ../lib/c.nonblock
|
||||
gcc $(compileropts) -c -o nonblock.o ../lib/c.nonblock
|
||||
|
||||
# Dynamic dependancies:
|
||||
o.hugehelp: c.hugehelp
|
||||
|
||||
|
|
|
|||
|
|
@ -99,6 +99,7 @@ RELEASE_OBJS= \
|
|||
homedirr.obj \
|
||||
curlutilr.obj \
|
||||
os-specificr.obj \
|
||||
nonblockr.obj \
|
||||
rawstrr.obj \
|
||||
strtoofftr.obj \
|
||||
mainr.obj \
|
||||
|
|
@ -112,6 +113,7 @@ DEBUG_OBJS= \
|
|||
homedird.obj \
|
||||
curlutild.obj \
|
||||
os-specificd.obj \
|
||||
nonblockd.obj \
|
||||
rawstrd.obj \
|
||||
strtoofftd.obj \
|
||||
maind.obj \
|
||||
|
|
@ -251,6 +253,8 @@ curlutilr.obj: curlutil.c
|
|||
$(CCR) $(CFLAGS) /Fo"$@" curlutil.c
|
||||
os-specificr.obj: os-specific.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" os-specific.c
|
||||
nonblockr.obj: ../lib/nonblock.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" ../lib/nonblock.c
|
||||
rawstrr.obj: ../lib/rawstr.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
|
||||
strtoofftr.obj: ../lib/strtoofft.c
|
||||
|
|
@ -275,6 +279,8 @@ curlutild.obj: curlutil.c
|
|||
$(CCD) $(CFLAGS) /Fo"$@" curlutil.c
|
||||
os-specificd.obj: os-specific.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" os-specific.c
|
||||
nonblockd.obj: ../lib/nonblock.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" ../lib/nonblock.c
|
||||
rawstrd.obj: ../lib/rawstr.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
|
||||
strtoofftd.obj: ../lib/strtoofft.c
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ MANPAGE = ../docs/curl.1
|
|||
README = ../docs/MANUAL
|
||||
MKHELP = ../src/mkhelp.pl
|
||||
|
||||
OBJS = getpass.c hugehelp.c main.c urlglob.c writeenv.c writeout.c curlutil.c os-specific.c ../lib/rawstr.c
|
||||
OBJS = getpass.c hugehelp.c main.c urlglob.c writeenv.c writeout.c curlutil.c os-specific.c ../lib/rawstr.c ../lib/nonblock.c
|
||||
|
||||
|
||||
all: hugehelp.c $(OBJS:.c=.o)
|
||||
|
|
|
|||
|
|
@ -163,6 +163,10 @@ SOURCE=.\os-specific.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\lib\nonblock.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\lib\rawstr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -215,6 +219,10 @@ SOURCE=.\setup.h
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\lib\nonblock.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\lib\rawstr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue