Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MAKEFILE
Package: wattcp.rar [view]
Upload User: better800
Upload Date: 2022-06-13
Package Size: 1853k
Code Size: 2k
Category:
TCP/IP Stack
Development Platform:
DOS
- #
- # Makefile for Waterloo TCP sample applications
- #
- TCCINCLUDE=F:borlandcinclude
- DEBUG= E # set to D for disable, E for enable
- MODEL= S # set to L for large, S for small
- #
- #
- # auto configure section
- #
- #
- !if '$(DEBUG)'=='E'
- IDEBUG=-v
- TEXTDEBUG=enabled
- !elif '$(DEBUG)'=='D'
- IDEBUG=-v-
- TEXTDEBUG=disabled
- #!else
- #!error DEBUG must be set to either E or D
- !endif
- !if '$(MODEL)'=='L'
- CMODEL=-ml
- CLIB=..libwattcplg.lib
- TEXTMODEL=large
- !elif '$(MODEL)'=='S'
- CMODEL=-ms
- CLIB=..libwattcpsm.lib
- TEXTMODEL=small
- !else
- !error MODEL must be set to either S or L
- !endif
- CFLAGS= $(CMODEL) -1 -r- -f- $(IDEBUG) -IF:borlandcinclude -I..include -LF:BORLANDCLIB
- #CFLAGS= $(CMODEL) -r- $(IDEBUG) -IF:bc4include -I..include
- CC= bcc $(CFLAGS)
- #
- #
- # list of executables
- #
- #
- .c.exe:
- $(CC) $*.c $(CLIB)
- exes.arc: ping.exe daytime.exe finger.exe lpr.exe lpq.exe
- tcpport.exe rexec.exe ntime.exe tcpinfo.exe cookie.exe
- popdump.exe ph.exe tcptalk.exe
- # host.exe
- echo done $(TEXTMODEL) make with debugging $(TEXTDEBUG)
- cookie.exe: cookie.c
- popdump.exe: popdump.c
- ping.exe: ping.c
- $(CC) ping.c $(CLIB)
- daytime.exe: daytime.c
- $(CC) daytime.c $(CLIB)
- finger.exe: finger.c
- lpr.exe: lpr.c
- $(CC) lpr.c $(CLIB)
- lpq.exe: lpq.c
- $(CC) lpq.c $(CLIB)
- tcpport.exe: tcpport.c
- $(CC) tcpport.c $(CLIB)
- # test version of tcpport
- tcpport1.exe: tcpport1.c
- $(CC) tcpport1.c $(CLIB)
- rexec.exe: rexec.c
- $(CC) rexec.c $(CLIB)
- ntime.exe: ntime.c
- $(CC) ntime.c $(CLIB)
- tcpinfo.exe: tcpinfo.c
- $(CC) tcpinfo.c $(CLIB)
- ph.exe: ph.c
- $(CC) ph.c $(CLIB)
- tcptalk.exe: tcptalk.c
- $(CC) tcptalk.c $(CLIB)
- host.exe: host.c
- $(CC) host.c $(CLIB)