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

界面编程

开发平台:

Visual C++

  1. # makefile for libpng using gcc (generic, static library)
  2. # Copyright (C) 2008 Glenn Randers-Pehrson
  3. # Copyright (C) 2000 Cosmin Truta
  4. # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
  5. # For conditions of distribution and use, see copyright notice in png.h
  6. # Location of the zlib library and include files
  7. ZLIBINC = ../zlib
  8. ZLIBLIB = ../zlib
  9. # Compiler, linker, lib and other tools
  10. CC = gcc
  11. LD = $(CC)
  12. AR_RC = ar rcs
  13. RANLIB = ranlib
  14. RM_F = rm -f
  15. CDEBUG = -g -DPNG_DEBUG=5
  16. LDDEBUG =
  17. CRELEASE = -O2
  18. LDRELEASE = -s
  19. #CFLAGS = -W -Wall $(CDEBUG)
  20. CFLAGS = -W -Wall $(CRELEASE)
  21. #LDFLAGS = $(LDDEBUG)
  22. LDFLAGS = $(LDRELEASE)
  23. LIBS = -lz -lm
  24. # File extensions
  25. O=.o
  26. A=.a
  27. EXE=
  28. # Variables
  29. OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) 
  30.        pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) 
  31.        pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
  32. # Targets
  33. all: static
  34. .c$(O):
  35. $(CC) -c $(CFLAGS) -I$(ZLIBINC) $<
  36. static: libpng$(A) pngtest$(EXE)
  37. shared:
  38. @echo This is a generic makefile that cannot create shared libraries.
  39. @echo Please use a configuration that is specific to your platform.
  40. @false
  41. libpng$(A): $(OBJS)
  42. $(AR_RC) $@ $(OBJS)
  43. $(RANLIB) $@
  44. test: pngtest$(EXE)
  45. ./pngtest$(EXE)
  46. pngtest$(EXE): pngtest$(O) libpng$(A)
  47. $(LD) $(LDFLAGS) -L$(ZLIBLIB) -o $@ pngtest$(O) libpng$(A) $(LIBS)
  48. clean:
  49. $(RM_F) *$(O) libpng$(A) pngtest$(EXE) pngout.png
  50. png$(O): png.h pngconf.h
  51. pngerror$(O): png.h pngconf.h
  52. pngget$(O): png.h pngconf.h
  53. pngmem$(O): png.h pngconf.h
  54. pngpread$(O): png.h pngconf.h
  55. pngread$(O): png.h pngconf.h
  56. pngrio$(O): png.h pngconf.h
  57. pngrtran$(O): png.h pngconf.h
  58. pngrutil$(O): png.h pngconf.h
  59. pngset$(O): png.h pngconf.h
  60. pngtest$(O): png.h pngconf.h
  61. pngtrans$(O): png.h pngconf.h
  62. pngwio$(O): png.h pngconf.h
  63. pngwrite$(O): png.h pngconf.h
  64. pngwtran$(O): png.h pngconf.h
  65. pngwutil$(O): png.h pngconf.h