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