git.y1.nz

gbdk-2020

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

commit f7a1f1a4bb5c504db8f9be2bae2d2e555e09f2ee
parent b72763b88d34a9adcfa9ea66f55cf8d1e9dacae9
Author: bbbbbr <reg+github@roughhousing.com>
Date:   Sun, 15 Aug 2021 22:03:34 -0700

Merge pull request #228 from bbbbbr/develop_makefile_platform_cleanfix

Makefile: Fix error on platform clean
Diffstat:
Mgbdk-lib/libc/Makefile2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gbdk-lib/libc/Makefile b/gbdk-lib/libc/Makefile @@ -48,6 +48,6 @@ ports-clean: for i in $(PORTS); do make -C asm/$$i clean THIS=$$i; done platform-clean: - for j in $(PORTS); do for i in $(PLATFORMS); do if [ -d "targets/$$j/$$i" ]; then make -C $$i clean PLAT=$$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 clean THIS=$$i; fi done done include Makefile.rules

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