home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / libtiff / contrib / dosdjgpp / Makefile.top < prev    next >
Encoding:
Makefile  |  1999-09-11  |  2.2 KB  |  55 lines

  1. #! smake
  2. #    $Header: /usr/people/sam/tiff/RCS/Makefile.in,v 1.44 1996/02/09 21:29:19 sam Exp $
  3. #
  4. # manually derived from Makefile.in (though basically nothing remains)
  5. # for DJGPP v2.x (GNU C for DOS/386).
  6. #
  7. # A warning about the filename structure:
  8. #
  9. # Some of the filenames used in the Makefiles are longer than 8 characters
  10. # this will work with the normal 8.3 file system since all files are unique
  11. # in the first 8 chars. To compile under the long filename support in Win95
  12. # you can either extract the files with a program that truncates filenames
  13. # (e.g. the DOS pkunzip) and disable LFN support with set LFN=n or with a
  14. # program that supports long filenames (e.g. WinZip 6.0) and set LFN=y.
  15. # The default environment in djgpp 2 is supposed to have LFN disabled, but
  16. # due to a bug in the init code it doesn't work properly. Setting the LFN
  17. # variable explicitly should fix that.
  18. #
  19. # Tag Image File Format Library
  20. #
  21. # Copyright (c) 1988-1996 Sam Leffler
  22. # Copyright (c) 1991-1996 Silicon Graphics, Inc.
  23. # Permission to use, copy, modify, distribute, and sell this software and 
  24. # its documentation for any purpose is hereby granted without fee, provided
  25. # that (i) the above copyright notices and this permission notice appear in
  26. # all copies of the software and related documentation, and (ii) the names of
  27. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  28. # publicity relating to the software without the specific, prior written
  29. # permission of Sam Leffler and Silicon Graphics.
  30. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  31. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  32. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  33. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  34. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  35. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  37. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  38. # OF THIS SOFTWARE.
  39. #
  40.  
  41. SRCDIR  = .
  42.  
  43. all default:
  44.     @${MAKE} -C libtiff
  45.     @${MAKE} -C tools
  46.  
  47. clean:
  48.     @${MAKE} -C libtiff clean
  49.     @${MAKE} -C tools clean
  50.  
  51.  
  52.