More hacking.
[newkind] / makefile-linux
index ca806aa..7f4a35e 100644 (file)
@@ -20,7 +20,7 @@
 
 CC = gcc
 LIBS = `allegro-config --libs`
-CFLAGS = -O -Wall
+CFLAGS = -O3 -mpentium -Wall -fomit-frame-pointer -funroll-loops
 OBJS = alg_gfx.o alg_main.o docked.o elite.o \
 intro.o planet.o shipdata.o shipface.o sound.o space.o \
 swat.o threed.o vector.o random.o trade.o options.o \
@@ -30,7 +30,7 @@ EXEC = newkind
 all: $(EXEC)
 
 clean:
-       rm *.o $(EXEC)
+       rm -f *.o $(EXEC)
 
 .SUFFIXES : .c .o