home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume6 / connect4 / Makefile < prev    next >
Makefile  |  1989-07-06  |  235b  |  12 lines

  1. # Makefile for c4
  2.  
  3. CFLAGS = -g #-DSCOREFILE=\"/usr/games/lib/c4.scores\" 
  4. CURSES = -lcurses -ltermcap
  5.  
  6. c4 : c4.o screen.o c4.h tables.h types.h
  7.     cc $(CFLAGS) -o c4 c4.o screen.o $(CURSES)
  8.  
  9. screen.o : c4.h
  10.  
  11. c4.o : c4.h tables.h types.h
  12.