CFLAGS= -g
LDFLAGS= -lcurses -ltermcap -lm

pga:  pga.c pga.h
	cc $(CFLAGS) -o pga pga.c $(LDFLAGS)

