mirror of
https://github.com/libretro/mrboom-libretro.git
synced 2024-11-23 08:09:43 +00:00
fix makefile for freebsd
This commit is contained in:
parent
865be65118
commit
f688664f02
9
Makefile
9
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)),)
|
||||
|
@ -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:
|
||||
|
||||
|
@ -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 *
|
||||
|
Loading…
Reference in New Issue
Block a user