# Simply makefile for compiling and checking for syntax errors under unix.
CFLAGS = -g
CC = gcc -D_near=

gg:	gnuchess.o piece.o hp95.o
	$(CC) $(CFLAGS) -o gg *.o -lcurses -ltermcap -lcurses
gnuchess.o: gnuchess.c

piece.o: piece.c

hp95.o: hp95.c
