makefile.dj2 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # DJGPP (DOS gcc) makefile for libpng
  2. # Copyright (C) 2002, 2006, 2009-2010-2011 Glenn Randers-Pehrson
  3. # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
  4. #
  5. # This code is released under the libpng license.
  6. # For conditions of distribution and use, see the disclaimer
  7. # and license in png.h
  8. # where make install will put libpng.a and png.h
  9. #prefix=/usr/local
  10. prefix=.
  11. INCPATH=$(prefix)/include
  12. LIBPATH=$(prefix)/lib
  13. CC=gcc
  14. CFLAGS=-I../zlib -O -DPNG_NO_SNPRINTF
  15. LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
  16. RANLIB=ranlib
  17. OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
  18. pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o pngwtran.o \
  19. pngmem.o pngerror.o pngpread.o
  20. all: libpng.a pngtest
  21. # see scripts/pnglibconf.mak for more options
  22. pnglibconf.h: scripts/pnglibconf.h.prebuilt
  23. cp scripts/pnglibconf.h.prebuilt $@
  24. libpng.a: $(OBJS)
  25. ar rc $@ $(OBJS)
  26. $(RANLIB) $@
  27. pngtest: pngtest.o libpng.a
  28. $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
  29. coff2exe pngtest
  30. test: pngtest
  31. ./pngtest
  32. clean:
  33. rm -f *.o libpng.a pngtest pngout.png pnglibconf.h
  34. # DO NOT DELETE THIS LINE -- make depend depends on it.
  35. png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  36. pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  37. pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  38. pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  39. pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  40. pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  41. pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  42. pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  43. pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  44. pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  45. pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  46. pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  47. pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  48. pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  49. pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  50. pngtest.o: png.h pngconf.h pnglibconf.h