# Makefile for c4 # Patched for FreeBSD 2.1.5R by # Joel Sutton # 15th April, 1997 CFLAGS += -DSCOREFILE=\"$(PREFIX)/share/connect4/scores\" CURSES = -lcurses -ltermcap all: c4 c4 : c4.o screen.o c4.h tables.h types.h $(CC) $(CFLAGS) -o c4 c4.o screen.o $(CURSES) screen.o : c4.h c4.o : c4.h tables.h types.h