Makefile~
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #
  2. # "$Id: Makefile,v 1.1 2005/04/09 22:09:50 ufoz Exp $"
  3. #
  4. # GNU ZIP library makefile for the Fast Light Toolkit (FLTK).
  5. #
  6. # Copyright 1997-2004 by Easy Software Products.
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Library General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # Library General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Library General Public
  19. # License along with this library; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. # USA.
  22. #
  23. # Please report all bugs and problems to "fltk-bugs@fltk.org".
  24. #
  25. ## sfinclude ../makeinclude
  26. #
  27. # Object files...
  28. #
  29. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o 
  30. trees.o zutil.o inflate.o inftrees.o inffast.o
  31. LIBZ = ../lib/libfltk_z$(LIBEXT)
  32. #
  33. # Make all targets...
  34. #
  35. all: $(LIBZ)
  36. #
  37. # Clean all targets and object files...
  38. #
  39. clean:
  40. $(RM) $(OBJS)
  41. $(RM) $(LIBZ)
  42. #
  43. # Install everything...
  44. #
  45. install: $(LIBZ)
  46. echo "Installing libfltk_z$(LIBEXT) in $(libdir)..."
  47. -$(MKDIR) $(libdir)
  48. $(RM) $(libdir)/libfltk_z$(LIBEXT)
  49. $(CP) $(LIBZ) $(libdir)
  50. $(RANLIB) $(libdir)/libfltk_z$(LIBEXT)
  51. echo "Installing zlib headers in $(includedir)/FL/images..."
  52. -$(MKDIR) $(includedir)/FL/images
  53. $(CP) zconf.h zlib.h zutil.h $(includedir)/FL/images
  54. #
  55. # Uninstall everything...
  56. #
  57. uninstall:
  58. echo "Uninstalling libfltk_z$(LIBEXT) in $(libdir)..."
  59. $(RM) $(libdir)/libfltk_z$(LIBEXT)
  60. echo "Uninstalling zlib headers in $(includedir)/FL/images..."
  61. $(RM) $(includedir)/FL/images/zconf.h
  62. $(RM) $(includedir)/FL/images/zlib.h
  63. $(RM) $(includedir)/FL/images/zutil.h
  64. #
  65. # libfltk_z.a
  66. #
  67. $(LIBZ): $(OBJS)
  68. echo Archiving $@...
  69. $(RM) $@
  70. $(LIBCOMMAND) $@ $(OBJS)
  71. $(RANLIB) $@
  72. #
  73. # Make dependencies...
  74. #
  75. depend: $(OBJS:.o=.c)
  76. makedepend -Y -I.. -f makedepend $(OBJS:.o=.c)
  77. include makedepend
  78. $(OBJS): ../makeinclude
  79. #
  80. # End of "$Id: Makefile,v 1.1 2005/04/09 22:09:50 ufoz Exp $".
  81. #