summaryrefslogtreecommitdiff
path: root/games/connect4/files/patch-aa
blob: aac62636f43f13250e4a4630da6b75053b2ddede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
*** Makefile.orig	Fri Nov  3 02:23:51 2000
--- Makefile	Fri Nov  3 02:24:41 2000
***************
*** 1,10 ****
  # Makefile for c4
  
! CFLAGS = -g #-DSCOREFILE=\"/usr/games/lib/c4.scores\" 
  CURSES = -lcurses -ltermcap
  
  c4 : c4.o screen.o c4.h tables.h types.h
! 	cc $(CFLAGS) -o c4 c4.o screen.o $(CURSES)
  
  screen.o : c4.h
  
--- 1,15 ----
  # Makefile for c4
+ # Patched for FreeBSD 2.1.5R by 
+ # Joel Sutton <suttonj@interconnect.com.au>
+ # 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