--- Makefile.orig	1994-06-23 12:14:46 UTC
+++ Makefile
@@ -27,7 +27,7 @@
 #
 
 
-CFLAGS = $(COMPILERFLAGS)
+CFLAGS += $(COMPILERFLAGS)
 # debugging: -ggdb -DDEBUG
 # profiling: -pg (gprof) or -p (prof)
 # strip command has to be removed for debugging or profiling
@@ -39,14 +39,11 @@ OBJS = maplay.o ibitstream.o header.o sc
 
 .SUFFIXES:	.cc
 
-install:
+all:
 		@./configuration.sh
 
-all:		maplay
-
 maplay:		$(OBJS)
 		$(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
-		-strip $@
 
 .cc.o:
 		$(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $*.cc -o $@
