diff --git a/Makefile b/Makefile index 314df50..c96e471 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,6 @@ AR := ar INSTALL := install RM := rm STRIP := strip -GIT_VERSION := " $(shell git rev-parse --short HEAD)" BINDIR ?= bin LIBDIR ?= lib DATADIR ?= share @@ -11,6 +10,13 @@ LIBRETRO_DIR ?= libretro WANT_BPP := 32 #DEBUG := 1 +ifneq ($(SKIP_GIT),1) +GIT_VERSION := " $(shell git rev-parse --short HEAD)" +else +GIT_VERSION := " " +endif + + MANDIR := man/man6 CFLAGS := $(filter-out -D_FORTIFY_SOURCE=1,$(CFLAGS)) CFLAGS := $(filter-out -D_FORTIFY_SOURCE=2,$(CFLAGS)) @@ -58,6 +64,7 @@ else ifneq ($(findstring Darwin,$(shell uname -a)),) endif else ifneq ($(findstring FreeBSD,$(shell uname -o)),) system_platform = freebsd + MANDIR = share/man/man6 else ifneq ($(findstring Haiku,$(shell uname -o)),) system_platform = haiku else ifneq ($(findstring MINGW,$(shell uname -a)),) diff --git a/README.md b/README.md index 482a127..477a3f4 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,6 @@ You can find netplay games by joining the [retroarch discord channel](https://di ### Options available: - Color, Sex or Skynet team modes. -- No monster mode. -- Drop bomb button autofire. ### Packages available: diff --git a/tools/createVersion.sh b/tools/createVersion.sh index 8d63f5a..e2b89a4 100755 --- a/tools/createVersion.sh +++ b/tools/createVersion.sh @@ -46,7 +46,7 @@ EOF mkdir $DEST mkdir $DEST/MrBoom-src-$VERSION cp -rf * $DEST/MrBoom-src-$VERSION/ -rm -rf $DEST/MrBoom-src-$VERSION/sdl $DEST/MrBoom-src-$VERSION/tools $DEST/MrBoom-src-$VERSION/*.yml +rm -rf $DEST/MrBoom-src-$VERSION/TODO $DEST/MrBoom-src-$VERSION/memoryMap.log $DEST/MrBoom-src-$VERSION/sdl $DEST/MrBoom-src-$VERSION/tools $DEST/MrBoom-src-$VERSION/*.yml cd $DEST rm ~/Downloads/MrBoom-src-$VERSION.tar* tar cf ~/Downloads/MrBoom-src-$VERSION.tar *