diff options
author | neonloop | 2021-08-04 22:40:32 +0000 |
---|---|---|
committer | neonloop | 2021-08-04 22:40:32 +0000 |
commit | b148bcce05254c7ebe0ad855e5f1e958968a0bb9 (patch) | |
tree | cfd96aa5a7eefaf20684c32943034652b713f3ce /Makefile | |
parent | 2316cdca56925fab2f3faf6acb451fdaafb9f362 (diff) | |
download | picoarch-b148bcce05254c7ebe0ad855e5f1e958968a0bb9.tar.gz picoarch-b148bcce05254c7ebe0ad855e5f1e958968a0bb9.tar.bz2 picoarch-b148bcce05254c7ebe0ad855e5f1e958968a0bb9.zip |
Only wrap option info if it exists
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -70,17 +70,19 @@ define CORE_template = $1_REPO ?= https://github.com/libretro/$(1)/ +$1_MAKE = make $(and $($1_MAKEFILE),-f $($1_MAKEFILE)) platform=$(platform) $(and $(DEBUG),DEBUG=$(DEBUG)) $(and $(PROFILE),PROFILE=$(PROFILE)) $($(1)_FLAGS) + $(1): git clone $(if $($1_REVISION),,--depth 1) $$($(1)_REPO) $(1) $(if $1_REVISION,cd $(1) && git checkout $($1_REVISION),) (test ! -d patches/$(1)) || (cd $(1) && $(foreach patch, $(sort $(wildcard patches/$(1)/*.patch)), patch -p1 < ../$(patch) &&) true) $(1)_libretro.so: $(1) - cd $(1) && make platform=$(platform) $(if $(DEBUG),DEBUG=$(DEBUG),) $(if $(PROFILE),PROFILE=$(PROFILE),) $($(1)_FLAGS) + cd $(1) && $$($1_MAKE) cp $(1)/$(1)_libretro.so . clean-$(1): - test ! -d $(1) || cd $(1) && make platform=$(platform) clean + test ! -d $(1) || cd $(1) && $$($1_MAKE) clean rm -f $(1)_libretro.so endef |