You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.1KB

  1. #
  2. # "$Id: makefile.wat 7563 2010-04-28 03:15:47Z greg.ercolano $"
  3. #
  4. # JPEG 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 on the following page:
  24. #
  25. # http://www.fltk.org/str.php
  26. #
  27. LIBNAMEROOT=ftlk_jpeg
  28. !include ../watcom.mif
  29. #
  30. # Object files...
  31. #
  32. LIBOBJS = jmemnobs.obj &
  33. jcapimin.obj jcapistd.obj jccoefct.obj jccolor.obj jcdctmgr.obj &
  34. jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj &
  35. jcparam.obj jcphuff.obj jcprepct.obj jcsample.obj jctrans.obj &
  36. jdapimin.obj jdapistd.obj jdatadst.obj jdatasrc.obj jdcoefct.obj &
  37. jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj &
  38. jdmaster.obj jdmerge.obj jdphuff.obj jdpostct.obj jdsample.obj &
  39. jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj &
  40. jidctflt.obj jidctfst.obj jidctint.obj jidctred.obj jquant1.obj &
  41. jquant2.obj jutils.obj jmemmgr.obj
  42. #
  43. # Make all targets...
  44. #
  45. all: $(LIBNAME)
  46. $(LIBNAME): $(LIBOBJS)
  47. $(LIB) $(LIBOPTS) $@ $<
  48. #
  49. # Clean all directories
  50. #
  51. clean : .SYMBOLIC
  52. @echo Cleaning up.
  53. CLEANEXTS = obj
  54. @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
  55. -rm -f *.err
  56. -rm -f $(LIBNAME)
  57. #
  58. # End of "$Id: makefile.wat 7563 2010-04-28 03:15:47Z greg.ercolano $".
  59. #