summaryrefslogtreecommitdiff
path: root/games/frotz/files/patch-aa
blob: 205a8fedb8989469ea2a189ce81b4b7dee5852d2 (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
31
32
33
34
35
36
37
38
--- Makefile	Fri Oct 17 20:11:10 1997
+++ /home/andy/tmp/wrk/Makefile	Sat May 16 15:29:57 1998
@@ -1,7 +1,7 @@
 
 # Define your c compiler.  I recommend gcc if you've got it.
 #CC = cc
-CC = gcc
+#CC = gcc
 
 # Define your optimization flags.  Most compilers understand -O and -O2,
 # Debugging (don't use)
@@ -43,7 +43,7 @@
 #                     have that option.
 #
 #DEFS = -DUSE_GETOPT_H -DCOLOR_SUPPORT -DEMACS_EDITING
-DEFS =
+DEFS = -DCOLOR_SUPPORT -DEMACS_EDITING -DUSE_NCURSES_H -DUSE_NOTHING
 
 # This should point to the location of your curses or ncurses include file
 # if it's in a non-standard place.
@@ -57,7 +57,7 @@
 #CURSES = -lncurses
 #LIB = -L/5usr/lib
 LIB =
-CURSES = -lcurses
+CURSES = -lncurses
 
 # Nothing under this line should need to be changed.
 
@@ -66,7 +66,7 @@
           text.o ux_init.o ux_input.o ux_pic.o ux_screen.o ux_sample.o \
           ux_text.o variable.o
 
-CFLAGS = $(OPTS) $(DEFS) $(INCL)
+CFLAGS+= $(DEFS)
 
 frotz: $(OBJECTS)
 	$(CC) -o frotz $(OBJECTS) $(LIB) $(CURSES)