--- Makefile.orig 2006-01-01 18:00:55.000000000 +0100 +++ Makefile 2006-01-01 18:27:06.000000000 +0100 @@ -9,7 +9,8 @@ CACHE = #ccache # use http://ccache.samba.org to speedup compiling CXX = $(CACHE) g++ -CXXFLAGS = -g -O3 -Wall `sdl-config --cflags` +OPTFLAGS = -g -O3 +CXXFLAGS = -Wall `sdl-config --cflags` $(OPTFLAGS) LDFLAGS = #-static -s LIBS = -L. `sdl-config --libs` -lSDL_image #LIBS = -L. `sdl-config --static-libs` -lSDL_image -lpng -ljpeg -lz -lm @@ -38,7 +39,7 @@ @echo "Creating Directories and Installing Files." @mkdir -p $(INSTALLBIN) @mkdir --mode=755 -p $(INSTALLPATH)/gfx $(INSTALLPATH)/snd - @install --strip --mode=755 $(BIN) $(INSTALLPATH) + @install --mode=755 $(BIN) $(INSTALLPATH) @install --mode=644 gfx/* $(INSTALLPATH)/gfx @install --mode=644 snd/* $(INSTALLPATH)/snd @echo "Creating $(INSTALLBIN)/highmoon to run HighMoon."