# Galactic Bloodshed (Robert Chansky, smq@b)
# Makefile

# (the -pipe -g are for development.)
# $(HP) comes from top level makefile for host and port info.
CFLAGS = -O -DTERMCAP $(HP)
#CFLAGS = -g -DTERMCAP $(HP)
#CFLAGS = -pipe -g -DTERMCAP

# objects for shell
SHOBJS =  GB_client.o	\
	keyboard.o	\
	util.o		\
	wrap.o		\
	orbit.o		\
	map.o

all: GB_client

# the shell 
GB_client : ${SHOBJS}
	cc -o GB_client ${SHOBJS} -lcurses -ltermcap -lm

clear:
	rm -f *.o core a.out
