mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
update submodules, fix for newer libchdr
This commit is contained in:
parent
14b19ad7c8
commit
d5288c2a41
1 changed files with 9 additions and 7 deletions
16
Makefile
16
Makefile
|
@ -295,16 +295,21 @@ endif
|
|||
endif
|
||||
|
||||
ifeq (1,$(use_libchdr))
|
||||
CFLAGS += -DUSE_LIBCHDR
|
||||
CHDR = pico/cd/libchdr
|
||||
CFLAGS += -DUSE_LIBCHDR -I$(CHDR)/include
|
||||
|
||||
# ouf... is there a better way to identify the include directories cmake uses?
|
||||
CHDR_I = $(shell grep 'add_subdirectory.*EXCLUDE' $(CHDR)/CMakeLists.txt | sed 's/.*add_subdirectory[ ]*.//;s/EXCLUDE.*//')
|
||||
# prepend includes to overload headers available in the toolchain
|
||||
CFLAGS := $(patsubst %, -I$(CHDR)/%/include, $(CHDR_I)) $(CFLAGS)
|
||||
|
||||
# chdr
|
||||
CHDR = pico/cd/libchdr
|
||||
CHDR_OBJS += $(CHDR)/src/libchdr_chd.o $(CHDR)/src/libchdr_cdrom.o
|
||||
CHDR_OBJS += $(CHDR)/src/libchdr_flac.o
|
||||
CHDR_OBJS += $(CHDR)/src/libchdr_bitstream.o $(CHDR)/src/libchdr_huffman.o
|
||||
|
||||
# lzma
|
||||
LZMA = $(CHDR)/deps/lzma-19.00
|
||||
# lzma - argh, what's make's way to filter CHDR_I for the string containing lzma?
|
||||
LZMA = $(CHDR)/$(shell for d in $(CHDR_I); do echo $$d | grep lzma; done)
|
||||
LZMA_OBJS += $(LZMA)/src/CpuArch.o $(LZMA)/src/Alloc.o $(LZMA)/src/LzmaEnc.o
|
||||
LZMA_OBJS += $(LZMA)/src/Sort.o $(LZMA)/src/LzmaDec.o $(LZMA)/src/LzFind.o
|
||||
LZMA_OBJS += $(LZMA)/src/Delta.o
|
||||
|
@ -314,9 +319,6 @@ OBJS += $(CHDR_OBJS)
|
|||
ifneq ($(STATIC_LINKING), 1)
|
||||
OBJS += $(LZMA_OBJS)
|
||||
endif
|
||||
# ouf... prepend includes to overload headers available in the toolchain
|
||||
CHDR_I = $(shell find $(CHDR) -name 'include')
|
||||
CFLAGS := $(patsubst %, -I%, $(CHDR_I)) $(CFLAGS)
|
||||
endif
|
||||
|
||||
ifeq "$(PLATFORM_ZLIB)" "1"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue