git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit dfebce49c660225ba7361061fedcbe6d96b8cec5
parent 9bcc90820f18cc942ad86125c96f73dea1fe7d45
Author: bbbbbr <bbbbbr@users.noreply.github.com>
Date:   Mon, 20 May 2024 01:02:41 -0700

Merge pull request #674 from bbbbbr/build_lib_asm_errors_should_halt_build

build: fix asm lib errors not halting build
Diffstat:
Mgbdk-lib/libc/Makefile4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gbdk-lib/libc/Makefile b/gbdk-lib/libc/Makefile @@ -29,10 +29,10 @@ all: ports platforms clean: port-clean ports-clean platform-clean ports: - for i in $(PORTS); do make port THIS=$$i PORT=$$i; done + for i in $(PORTS); do make port THIS=$$i PORT=$$i || exit 1; done platforms: - for j in $(PORTS); do for i in $(PLATFORMS); do if [ -d "targets/$$j/$$i" ]; then make -C targets/$$j/$$i platform THIS=$$i; fi done done + for j in $(PORTS); do for i in $(PLATFORMS); do if [ -d "targets/$$j/$$i" ]; then make -C targets/$$j/$$i platform THIS=$$i || exit 1; fi done done # Make all the std libs # Make all the port specific libs

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