mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
libretro, fix build conflict
This commit is contained in:
parent
69d69a4f63
commit
ab43a4b2fd
2 changed files with 3 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -74,9 +74,9 @@ endif
|
||||||
|
|
||||||
# revision info from repository if this not a tagged release
|
# revision info from repository if this not a tagged release
|
||||||
ifeq "$(shell git describe --tags --exact-match HEAD 2>/dev/null)" ""
|
ifeq "$(shell git describe --tags --exact-match HEAD 2>/dev/null)" ""
|
||||||
REVISION ?= -$(shell git rev-parse --short HEAD || echo ???)
|
GIT_REVISION ?= -$(shell git rev-parse --short HEAD || echo ???)
|
||||||
endif
|
endif
|
||||||
CFLAGS += -DREVISION=\"$(REVISION)\"
|
CFLAGS += -DREVISION=\"$(GIT_REVISION)\"
|
||||||
|
|
||||||
# default settings
|
# default settings
|
||||||
use_libchdr ?= 1
|
use_libchdr ?= 1
|
||||||
|
|
|
@ -40,7 +40,7 @@ STATIC_LINKING_LINK:= 0
|
||||||
LOW_MEMORY := 0
|
LOW_MEMORY := 0
|
||||||
TARGET_NAME := picodrive
|
TARGET_NAME := picodrive
|
||||||
LIBM := -lm
|
LIBM := -lm
|
||||||
REVISION ?= -$(shell git rev-parse --short HEAD || echo ???)
|
GIT_REVISION ?= -$(shell git rev-parse --short HEAD || echo ???)
|
||||||
|
|
||||||
|
|
||||||
fpic :=
|
fpic :=
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue