zlib.mak
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:

Symbian

开发平台:

Visual C++

  1. # Makefile for zlib32bd.lib
  2. # ------------- Borland C++ 4.5 -------------
  3. # The (32-bit) zlib32bd.lib made with this makefile is intended for use 
  4. # in making the (32-bit) DLL, png32bd.dll. It uses the "stdcall" calling 
  5. # convention.
  6. CFLAGS= -ps -O2 -C -K -N- -k- -d -3 -r- -w-par -w-aus -WDE
  7. CC=f:bc45binbcc32
  8. LIBFLAGS= /C
  9. LIB=f:bc45bintlib
  10. ZLIB=zlib32bd.lib
  11. .autodepend
  12. .c.obj:
  13.         $(CC) -c $(CFLAGS) $<
  14. OBJ1=adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj 
  15. OBJ2=infcodes.obj inflate.obj inftrees.obj infutil.obj inffast.obj 
  16. OBJ3=trees.obj uncompr.obj zutil.obj
  17. pOBJ1=+adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infblock.obj 
  18. pOBJ2=+infcodes.obj+inflate.obj+inftrees.obj+infutil.obj+inffast.obj 
  19. pOBJ3=+trees.obj+uncompr.obj+zutil.obj
  20. all: $(ZLIB)
  21. $(ZLIB): $(OBJ1) $(OBJ2) $(OBJ3)
  22.         @if exist $@ del $@
  23.         $(LIB) @&&|
  24. $@ $(LIBFLAGS) &
  25. $(pOBJ1) &
  26. $(pOBJ2) &
  27. $(pOBJ3)
  28. |
  29. # End of makefile for zlib32bd.lib