home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / gnuchess.lzh / gnuchess.1 / Makefile.dos < prev    next >
Makefile  |  1991-05-19  |  2KB  |  44 lines

  1. # makefile.dos -  Makefile for CHESS (MS-DOS Version)
  2. # Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3. # Copyright (C) 1986, 1987, 1988, 1989, 1990 Free Software Foundation, Inc.
  4. #
  5. # This makefile will NOT work with Microsoft's make.
  6. # Use a **IX compatible make instead.
  7. #
  8. # This file is not yet part of CHESS.
  9. #
  10. # CHESS is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY.  No author or distributor
  12. # accepts responsibility to anyone for the consequences of using it
  13. # or for whether it serves any particular purpose or works at all,
  14. # unless he says so in writing.  Refer to the CHESS General Public
  15. # License for full details.
  16. #
  17. # Everyone is granted permission to copy, modify and redistribute
  18. # CHESS, but only under the conditions described in the
  19. # CHESS General Public License.   A copy of this license is
  20. # supposed to have been given to you along with CHESS so you
  21. # can know your rights and responsibilities.  It should be in a
  22. # file named COPYING.  Among other things, the copyright notice
  23. # and this notice must be preserved on all copies.
  24.  
  25. # gnuchess  will be the curses-based chess.
  26. # gnuchessn will be the fancy-display-curses-based chess.
  27. # gnuchessr will be the xchess/chesstool based chess.
  28. #        (/usr/games/chesstool gnuchessr)
  29. #    for use with SUN's chesstool and X-window's xchess.
  30. #    To use with latter, add -DCHESSTOOL to the nondsp.o
  31. #    compilation lines (e.g. cc -O -DCHESSTOOL ...)
  32. # If you want to use the persistent transpositon table add
  33. # -DHASHFILE=\"$(LIBDIR)/gnuchess.hash\"
  34. # to the gnuchess.o compilation line. You also have to run gnuchess -t
  35. # To actually create the file. -t can also be used to report
  36. # statistics about the file or to resize it.
  37.  
  38. # if you don't want the IBM PC's graphic characters, add -DSEVENBIT
  39. CC    =cl
  40. BINDIR    =.
  41. LIBDIR    =.
  42. HASH    =-DHASHFILE=\"$(LIBDIR)/gnuchess.hash\"
  43. BOOK    =-DBOOK=\"$(LIBDIR)/gnuchess.book\"
  44.