makefile.wat
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #
  2. # "$Id: makefile.wat,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. LIBNAMEROOT=ftlk_z
  26. !include ../watcom.mif
  27. #
  28. # Object files...
  29. #
  30. LIBOBJS = adler32.obj compress.obj crc32.obj gzio.obj uncompr.obj deflate.obj &
  31.           trees.obj zutil.obj inflate.obj inftrees.obj inffast.obj
  32. #
  33. # Make all targets...
  34. #
  35. all: $(LIBNAME)
  36. $(LIBNAME): $(LIBOBJS)
  37.     $(LIB) $(LIBOPTS) $@ $<
  38. #
  39. # Clean all directories
  40. #
  41. clean : .SYMBOLIC
  42.     @echo Cleaning up.
  43. CLEANEXTS = obj
  44.     @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)*.%a
  45.     -rm -f *.err
  46.     -rm -f $(LIBNAME)
  47. #
  48. # End of "$Id: makefile.wat,v 1.1 2005/04/09 22:09:50 ufoz Exp $".
  49. #