--- Makefile.orig	2010-08-08 15:30:29.000000000 +0200
+++ Makefile	2010-08-08 15:30:54.000000000 +0200
@@ -1,10 +1,12 @@
 # Makefile for c4
 
-CFLAGS = -g #-DSCOREFILE=\"/usr/games/lib/c4.scores\" 
+CFLAGS += -DSCOREFILE=\"${SCOREFILE}\" 
 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)
+	$(CC) $(CFLAGS) -o c4 c4.o screen.o $(CURSES)
 
 screen.o : c4.h
 
