makefile.ibmc
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. # Makefile for libpng (static)
  2. # IBM C version 3.x for Win32 and OS/2
  3. # Copyright (C) 2000 Cosmin Truta
  4. # For conditions of distribution and use, see copyright notice in png.h
  5. # Notes:
  6. #   Derived from makefile.std
  7. #   All modules are compiled in C mode
  8. #   Tested under Win32, expected to work under OS/2
  9. #   Can be easily adapted for IBM VisualAge/C++ for AIX
  10. # Location of the zlib library and include files
  11. ZLIBINC = ../zlib
  12. ZLIBLIB = ../zlib
  13. # Compiler, linker, lib and other tools
  14. CC = icc
  15. LD = ilink
  16. AR = ilib
  17. RM = del
  18. CFLAGS = -I$(ZLIBINC) -Mc -O2 -W3
  19. LDFLAGS =
  20. # File extensions
  21. O=.obj
  22. A=.lib
  23. E=.exe
  24. # Variables
  25. OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) 
  26. pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) 
  27. pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
  28. LIBS = libpng$(A) $(ZLIBLIB)/zlib$(A)
  29. # Targets
  30. all: libpng$(A) pngtest$(E)
  31. libpng$(A): $(OBJS)
  32. $(AR) -out:$@ $(OBJS)
  33. test: pngtest$(E)
  34. pngtest$(E)
  35. pngtest: pngtest$(E)
  36. pngtest$(E): pngtest$(O) libpng$(A)
  37. $(LD) $(LDFLAGS) pngtest$(O) $(LIBS)
  38. clean:
  39. $(RM) *$(O)
  40. $(RM) libpng$(A)
  41. $(RM) pngtest$(E)
  42. $(RM) pngout.png
  43. png$(O): png.h pngconf.h
  44. pngerror$(O): png.h pngconf.h
  45. pngget$(O): png.h pngconf.h
  46. pngmem$(O): png.h pngconf.h
  47. pngpread$(O): png.h pngconf.h
  48. pngread$(O): png.h pngconf.h
  49. pngrio$(O): png.h pngconf.h
  50. pngrtran$(O): png.h pngconf.h
  51. pngrutil$(O): png.h pngconf.h
  52. pngset$(O): png.h pngconf.h
  53. pngtest$(O): png.h pngconf.h
  54. pngtrans$(O): png.h pngconf.h
  55. pngwio$(O): png.h pngconf.h
  56. pngwrite$(O): png.h pngconf.h
  57. pngwtran$(O): png.h pngconf.h
  58. pngwutil$(O): png.h pngconf.h