#
# Imakefile -- for instructions on generating a Makefile
#   for xboard from this file, see the file INSTALL.
#

   SYS_LIBRARIES = -lm -L/usr/ucblib -lucb -lsocket -lnsl
 LOCAL_LIBRARIES = XawClientLibs
         DEPLIBS = XawClientDepLibs
         DEFINES = -I/usr/ucbinclude -DHAS_GETTIMEOFDAY
      CDEBUGFLAGS = -O2
#              CC = gcc -Wall -pedantic -ansi -Wno-implicit -Wno-comment
               CC = gcc -Wall -traditional

# For HP-UX, per R. K. Lloyd:
#     CDEBUGFLAGS = +O3 +Obb1000

# Try this if you use gcc and xboard crashes in sscanf.
# Probably needed on VAX Ultrix 3.1 and on IBM PS/2 AIX.
#       CCOPTIONS = -fwritable-strings

SRCS = parser.c xboard.c
OBJS = parser.o xboard.o

AllTarget(xboard)

depend:: parser.c

clean::
	$(RM) parser.c chess.lst

ComplexProgramTarget(xboard)




