⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zlib.mak

📁 zlib压缩源码函数库
💻 MAK
字号:
# Makefile for zlib32bd.lib
# ------------- Borland C++ 4.5 -------------

# The (32-bit) zlib32bd.lib made with this makefile is intended for use 
# in making the (32-bit) DLL, png32bd.dll. It uses the "stdcall" calling 
# convention.

CFLAGS= -ps -O2 -C -K -N- -k- -d -3 -r- -w-par -w-aus -WDE
CC=f:\bc45\bin\bcc32
LIBFLAGS= /C
LIB=f:\bc45\bin\tlib
ZLIB=zlib32bd.lib

.autodepend
.c.obj:
        $(CC) -c $(CFLAGS) $<

OBJ1=adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj 
OBJ2=infcodes.obj inflate.obj inftrees.obj infutil.obj inffast.obj 
OBJ3=trees.obj uncompr.obj zutil.obj
pOBJ1=+adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infblock.obj 
pOBJ2=+infcodes.obj+inflate.obj+inftrees.obj+infutil.obj+inffast.obj 
pOBJ3=+trees.obj+uncompr.obj+zutil.obj

all: $(ZLIB)

$(ZLIB): $(OBJ1) $(OBJ2) $(OBJ3)
        @if exist $@ del $@
        $(LIB) @&&|
$@ $(LIBFLAGS) &
$(pOBJ1) &
$(pOBJ2) &
$(pOBJ3)
|

# End of makefile for zlib32bd.lib

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -