makefile.wat 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #
  2. # "$Id: makefile.wat 8864 2011-07-19 04:49:30Z 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. 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_jpeg
  19. !include ../watcom.mif
  20. #
  21. # Object files...
  22. #
  23. LIBOBJS = jmemnobs.obj &
  24. jcapimin.obj jcapistd.obj jccoefct.obj jccolor.obj jcdctmgr.obj &
  25. jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj &
  26. jcparam.obj jcphuff.obj jcprepct.obj jcsample.obj jctrans.obj &
  27. jdapimin.obj jdapistd.obj jdatadst.obj jdatasrc.obj jdcoefct.obj &
  28. jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj &
  29. jdmaster.obj jdmerge.obj jdphuff.obj jdpostct.obj jdsample.obj &
  30. jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj &
  31. jidctflt.obj jidctfst.obj jidctint.obj jidctred.obj jquant1.obj &
  32. jquant2.obj jutils.obj jmemmgr.obj
  33. #
  34. # Make all targets...
  35. #
  36. all: $(LIBNAME)
  37. $(LIBNAME): $(LIBOBJS)
  38. $(LIB) $(LIBOPTS) $@ $<
  39. #
  40. # Clean all directories
  41. #
  42. clean : .SYMBOLIC
  43. @echo Cleaning up.
  44. CLEANEXTS = obj
  45. @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
  46. -rm -f *.err
  47. -rm -f $(LIBNAME)
  48. #
  49. # End of "$Id: makefile.wat 8864 2011-07-19 04:49:30Z greg.ercolano $".
  50. #