home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / 21582 < prev    next >
Encoding:
Internet Message Format  |  1992-12-23  |  1.4 KB

  1. Path: sparky!uunet!paladin.american.edu!gatech!emory!ogicse!news.u.washington.edu!hardy.u.washington.edu!opium
  2. From: opium@hardy.u.washington.edu (Just dance and move your body)
  3. Newsgroups: comp.os.linux
  4. Subject: xmkmf/imake-Imakefile CHALLENGE, somebody please!!!!
  5. Message-ID: <1992Dec24.032233.4534@u.washington.edu>
  6. Date: 24 Dec 92 03:22:33 GMT
  7. Article-I.D.: u.1992Dec24.032233.4534
  8. References: <1992Dec24.032144.4474@u.washington.edu>
  9. Sender: news@u.washington.edu (USENET News System)
  10. Organization: University of Washington, Seattle
  11. Lines: 25
  12.  
  13. Here is the Imakefile distributed with xboard-2.0, an X11R5 front end for
  14. Gnuchess(x)-4.0, I haven't had any luck generating a Makefile using xmkmf
  15. or imake under Linux-0.98 - 0.99/Xfree86v1.1.  Maybe if somebody else could
  16. do it, they would e-mail me the Makefile generated.  8-)
  17. #
  18. # Imakefile -- to generate a Makefile for xboard, use:
  19. #   /usr/local/X11/mit/config/imake \
  20. #       -I/usr/local/X11/mit/config \
  21. #       -DTOPDIR=/usr/local/X11/mit
  22. #
  23.    SYS_LIBRARIES = -lm
  24.  LOCAL_LIBRARIES = XawClientLibs
  25.          DEPLIBS = XawClientDepLibs
  26.          DEFINES = -DHAS_GETTIMEOFDAY
  27.      CDEBUGFLAGS = -g
  28.               CC = gcc -Wall
  29. # For HP-UX, per R. K. Lloyd:
  30. #    CDEBUGFLAGS = +O3 +Obb1000
  31. SRCS = parser.c xboard.c
  32. OBJS = parser.o xboard.o
  33. AllTarget(xboard)
  34. depend:: parser.c
  35. clean::
  36.     $(RM) parser.c chess.lst
  37. ComplexProgramTarget(xboard)
  38.