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
watcom_l.mak
Package: zlib124.zip [view]
Upload User: shengde
Upload Date: 2021-02-21
Package Size: 638k
Code Size: 1k
Category:
Compress-Decompress algrithms
Development Platform:
Visual C++
- # Makefile for zlib
- # OpenWatcom large model
- # Last updated: 28-Dec-2005
- # To use, do "wmake -f watcom_l.mak"
- C_SOURCE = adler32.c compress.c crc32.c deflate.c &
- gzclose.c gzlib.c gzread.c gzwrite.c &
- infback.c inffast.c inflate.c inftrees.c &
- trees.c uncompr.c zutil.c
- OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
- gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
- infback.obj inffast.obj inflate.obj inftrees.obj &
- trees.obj uncompr.obj zutil.obj
- CC = wcc
- LINKER = wcl
- CFLAGS = -zq -ml -s -bt=dos -oilrtfm -fr=nul -wx
- ZLIB_LIB = zlib_l.lib
- .C.OBJ:
- $(CC) $(CFLAGS) $[@
- all: $(ZLIB_LIB) example.exe minigzip.exe
- $(ZLIB_LIB): $(OBJS)
- wlib -b -c $(ZLIB_LIB) -+adler32.obj -+compress.obj -+crc32.obj
- wlib -b -c $(ZLIB_LIB) -+gzclose.obj -+gzlib.obj -+gzread.obj -+gzwrite.obj
- wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
- wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
- wlib -b -c $(ZLIB_LIB) -+trees.obj -+uncompr.obj -+zutil.obj
- example.exe: $(ZLIB_LIB) example.obj
- $(LINKER) -fe=example.exe example.obj $(ZLIB_LIB)
- minigzip.exe: $(ZLIB_LIB) minigzip.obj
- $(LINKER) -fe=minigzip.exe minigzip.obj $(ZLIB_LIB)
- clean: .SYMBOLIC
- del *.obj
- del $(ZLIB_LIB)
- @echo Cleaning done