git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit ec8baa63295be13f9aadcada4f7a7b0f8c951a04
parent 9bd84978cfbd1c399803f0dca51b0c448cb6bcac
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Fri, 11 Jul 2025 18:03:36 +0300

Allow specifying a custom ibtool path

Diffstat:
MMakefile6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -136,6 +136,8 @@ CC := clang endif endif +IBTOOL ?= ibtool + # Find libraries with pkg-config if available. ifneq (, $(shell which pkg-config 2> $(NULL))) # But not on macOS, it's annoying, and not on Haiku, where OpenGL is broken @@ -590,10 +592,10 @@ ifeq ($(CONF), release) endif $(BIN)/SameBoy.app/Contents/Resources/%.nib: Cocoa/%.xib - ibtool --target-device mac --minimum-deployment-target 10.9 --compile $@ $^ 2>&1 | cat - + $(IBTOOL) --target-device mac --minimum-deployment-target 10.9 --compile $@ $^ 2>&1 | cat - $(BIN)/SameBoy-iOS.app/%.storyboardc: iOS/%.storyboard - ibtool --target-device iphone --target-device ipad --minimum-deployment-target $(IOS_MIN) --compile $@ $^ 2>&1 | cat - + $(IBTOOL) --target-device iphone --target-device ipad --minimum-deployment-target $(IOS_MIN) --compile $@ $^ 2>&1 | cat - # Quick Look generators

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.