makefile.wat 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # "$Id: makefile.wat 8864 2011-07-19 04:49:30Z greg.ercolano $"
  3. #
  4. # GNU ZIP library makefile for the Fast Light Toolkit (FLTK).
  5. #
  6. # Copyright 1998-2011 by Bill Spitzak and others.
  7. #
  8. # This library is free software. Distribution and use rights are outlined in
  9. # the file "COPYING" which should have been included with this file. If this
  10. # file is missing or damaged, see the license at:
  11. #
  12. # http://www.fltk.org/COPYING.php
  13. #
  14. # Please report all bugs and problems on the following page:
  15. #
  16. # http://www.fltk.org/str.php
  17. #
  18. LIBNAMEROOT=ftlk_z
  19. !include ../watcom.mif
  20. #
  21. # Object files...
  22. #
  23. LIBOBJS = adler32.obj compress.obj crc32.obj uncompr.obj deflate.obj &
  24. trees.obj zutil.obj inflate.obj inftrees.obj inffast.obj &
  25. gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj
  26. #
  27. # Make all targets...
  28. #
  29. all: $(LIBNAME)
  30. $(LIBNAME): $(LIBOBJS)
  31. $(LIB) $(LIBOPTS) $@ $<
  32. #
  33. # Clean all directories
  34. #
  35. clean : .SYMBOLIC
  36. @echo Cleaning up.
  37. CLEANEXTS = obj
  38. @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
  39. -rm -f *.err
  40. -rm -f $(LIBNAME)
  41. #
  42. # End of "$Id: makefile.wat 8864 2011-07-19 04:49:30Z greg.ercolano $".
  43. #