--- Makefile.orig	Sat Nov 11 20:50:16 2000
+++ Makefile	Wed Nov 22 21:16:35 2000
@@ -1,26 +1,26 @@
 #Define your C compiler.  I recommend gcc if you have it.
-CC = gcc
+#CC = gcc
 #CC = cc
 
 # Define your optimization flags.  Most compilers understand -O and -O2,
 # Standard (note: Solaris on UltraSparc using gcc 2.8.x might not like this.)
-OPTS = -O2 
+#OPTS = -O2 
 # Pentium with gcc 2.7.0 or better
 #OPTS = -O2 -fomit-frame-pointer -malign-functions=2 -malign-loops=2 \
 #-malign-jumps=2
 
 # Define where you want Frotz to be installed.  Usually this is /usr/local
-PREFIX = /usr/local
+#PREFIX = /usr/local
 #PREFIX =
 
 # Define where you want Frotz to look for frotz.conf.
-CONFIG_DIR = /usr/local/etc
+CONFIG_DIR = ${PREFIX}/etc
 #CONFIG_DIR = /etc
 #CONFIG_DIR = /usr/pkg/etc
 #CONFIG_DIR =
 
 # Uncomment this if you want color support.  Usually this requires ncurses.
-#COLOR_DEFS = -DCOLOR_SUPPORT
+COLOR_DEFS = -DCOLOR_SUPPORT
 
 # Uncomment this if you have an OSS soundcard driver and want classical
 # Infocom sound support.
@@ -28,7 +28,7 @@
 
 # This should point to the location of your curses.h or ncurses.h include
 # file if your compiler doesn't know about it.
-INCL = -I/usr/local/include
+#INCL = -I/usr/local/include
 #INCL = -I/usr/pkg/include
 #INCL = -I/usr/freeware/include
 #INCL = -I/5usr/include
@@ -37,7 +37,7 @@
 # This should define the location and name of whatever curses library you're
 # linking with.  Usually, this isn't necessary if /etc/ld.so.conf is set
 # up correctly.
-LIB = -L/usr/local/lib
+#LIB = -L/usr/local/lib
 #LIB = -L/usr/pkg/lib
 #LIB = -L/usr/freeware/lib
 #LIB = -L/5usr/lib
@@ -81,7 +81,7 @@
 COMP_DEFS = $(OPT_DEFS) $(COLOR_DEFS) $(SOUND_DEFS) $(SOUNDCARD) \
 	$(MEMMOVE_DEF)
 
-CFLAGS = $(OPTS) $(COMP_DEFS) $(INCL)
+CFLAGS += $(OPTS) $(COMP_DEFS) $(INCL)
 
 
 $(BINNAME): soundcard.h $(OBJECTS)
