b88b170
--- ./Makefile	2002-10-27 17:21:52.000000000 -0800
b88b170
+++ ./Makefile.fedora	2005-07-19 06:46:20.000000000 -0700
b88b170
@@ -7,25 +7,25 @@
b88b170
 # Define your optimization flags.  Most compilers understand -O and -O2,
b88b170
 # Standard (note: Solaris on UltraSparc using gcc 2.8.x might not like this.)
b88b170
 #
b88b170
-OPTS = -O2 
b88b170
+OPTS = @@OPTS@@
b88b170
 
b88b170
 # Pentium with gcc 2.7.0 or better
b88b170
 #OPTS = -O2 -fomit-frame-pointer -malign-functions=2 -malign-loops=2 \
b88b170
 #-malign-jumps=2
b88b170
 
b88b170
 # Define where you want Frotz installed.  Usually this is /usr/local
b88b170
-PREFIX = /usr/local
b88b170
+PREFIX = /usr
b88b170
 
b88b170
 MAN_PREFIX = $(PREFIX)
b88b170
 #MAN_PREFIX = /usr/local/share
b88b170
 
b88b170
-CONFIG_DIR = $(PREFIX)/etc
b88b170
-#CONFIG_DIR = /etc
b88b170
+#CONFIG_DIR = $(PREFIX)/etc
b88b170
+CONFIG_DIR = /etc
b88b170
 
b88b170
 # Define where you want Frotz to look for frotz.conf.
b88b170
 #
b88b170
-CONFIG_DIR = /usr/local/etc
b88b170
-#CONFIG_DIR = /etc
b88b170
+#CONFIG_DIR = /usr/local/etc
b88b170
+CONFIG_DIR = /etc
b88b170
 #CONFIG_DIR = /usr/pkg/etc
b88b170
 #CONFIG_DIR =
b88b170
 
b88b170
@@ -73,15 +73,15 @@
b88b170
 # curses library won't work, comment out the first option and uncomment
b88b170
 # the second.
b88b170
 #
b88b170
-CURSES = -lcurses
b88b170
-#CURSES = -lncurses
b88b170
+#CURSES = -lcurses
b88b170
+CURSES = -lncurses
b88b170
 
b88b170
 # Uncomment this if your need to use ncurses instead of the
b88b170
 # vendor-supplied curses library.  This just tells the compile process
b88b170
 # which header to include, so don't worry if ncurses is all you have
b88b170
 # (like on Linux).  You'll be fine.
b88b170
 #
b88b170
-#CURSES_DEF = -DUSE_NCURSES_H
b88b170
+CURSES_DEF = -DUSE_NCURSES_H
b88b170
 
b88b170
 # Uncomment this if you're compiling Unix Frotz on a machine that lacks
b88b170
 # the memmove(3) system call.  If you don't know what this means, leave it