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.w32
Package: 142_61_thumb_advanced.rar [view]
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 1k
Category:
Symbian
Development Platform:
Visual C++
- # Makefile for zlib. Modified for mingw32
- # For conditions of distribution and use, see copyright notice in zlib.h
- # To compile,
- #
- # make -fmakefile.w32
- #
- CC=gcc
- # Generate dependencies (see end of the file)
- CPPFLAGS=-MMD
- #CFLAGS=-MMD -O
- #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
- #CFLAGS=-MMD -g -DDEBUG
- CFLAGS=-O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion
- -Wstrict-prototypes -Wmissing-prototypes
- # If cp.exe is not found, replace with copy /Y .
- CP=cp -f
- # The default value of RM is "rm -f."
- # If "rm.exe" is not found, uncomment:
- # RM=del
- LD=gcc
- LDLIBS=-L. -lz
- LDFLAGS=-s
- INCL=zlib.h zconf.h
- LIBS=libz.a
- AR=ar rcs
- OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o
- zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o
- inffast.o
- TEST_OBJS = minigzip.o untgz.o
- all: minigzip.exe untgz.exe
- rebuild: clean all
- libz.a: $(OBJS)
- $(AR) $@ $(OBJS)
- %.exe : %.o $(LIBS)
- $(LD) $(LDFLAGS) -o $@ $< $(LDLIBS)
- .PHONY : clean
- clean:
- $(RM) *.d *.o *.exe libz.a foo.gz
- DEPS := $(wildcard *.d)
- ifneq ($(DEPS),)
- include $(DEPS)
- endif