diff -urN SDLSasteroids-3.0.1.org/Makefile SDLSasteroids-3.0.1/Makefile --- SDLSasteroids-3.0.1.org/Makefile 2005-04-13 10:01:12.000000000 +0200 +++ SDLSasteroids-3.0.1/Makefile 2005-05-28 18:58:58.000000000 +0200 @@ -5,6 +5,7 @@ BINDIR=/usr/bin/ MANDIR=/usr/man +DESTDIR= # For OpenGL EXTRA_DEFINES="-DWANT_OPENGL -DHAVE_SOUND" EXTRA_LIBS=-lGL @@ -19,18 +20,19 @@ install: make GAMEDIR=$(GAMEDIR) EXTRA_DEFINES=$(EXTRA_DEFINES) EXTRA_LIBS=$(EXTRA_LIBS) -C src - install -d $(GAMEDIR) - install -d $(GAMEDIR)/graphics - install -d $(GAMEDIR)/sounds - install -d $(GAMEDIR)/fonts - install -d $(BINDIR) - install --strip --mode=755 src/sasteroids $(BINDIR) - install --mode=644 sasteroids.6 $(MANDIR)/man6 - install --mode=644 fonts/nicefont.ttf $(GAMEDIR)/fonts/ - install --mode=644 sounds/*.wav $(GAMEDIR)/sounds/ - install --mode=644 graphics/*.png $(GAMEDIR)/graphics - install --mode=644 graphics/sprite/*.png $(GAMEDIR)/graphics - install --mode=644 graphics/backdrops/*.jpg $(GAMEDIR)/graphics + install -d $(DESTDIR)$(GAMEDIR) + install -d $(DESTDIR)$(GAMEDIR)/graphics + install -d $(DESTDIR)$(GAMEDIR)/sounds + install -d $(DESTDIR)$(GAMEDIR)/fonts + install -d $(DESTDIR)$(MANDIR)/man6 + install -d $(DESTDIR)$(BINDIR) + install --strip --mode=755 src/sasteroids $(DESTDIR)$(BINDIR) + install --mode=644 sasteroids.6 $(DESTDIR)$(MANDIR)/man6 + install --mode=644 fonts/nicefont.ttf $(DESTDIR)$(GAMEDIR)/fonts/ + install --mode=644 sounds/*.wav $(DESTDIR)$(GAMEDIR)/sounds/ + install --mode=644 graphics/*.png $(DESTDIR)$(GAMEDIR)/graphics + install --mode=644 graphics/sprite/*.png $(DESTDIR)$(GAMEDIR)/graphics + install --mode=644 graphics/backdrops/*.jpg $(DESTDIR)$(GAMEDIR)/graphics make GAMEDIR=$(GAMEDIR) -C src diff -urN SDLSasteroids-3.0.1.org/src/gameconf.h SDLSasteroids-3.0.1/src/gameconf.h --- SDLSasteroids-3.0.1.org/src/gameconf.h 2005-04-13 10:11:21.000000000 +0200 +++ SDLSasteroids-3.0.1/src/gameconf.h 2005-05-28 18:54:58.000000000 +0200 @@ -7,7 +7,7 @@ // Information about the Game // Set the version string for SDL Sasteroids -#define VERSION "2.99" +#define VERSION "3.01" // Where do we want the game files? // Note: This is NOT the place to edit this, use the *MAKEFILE*