git.y1.nz

gbdk-2020

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

commit aca9e99d6ddaf0655a0f62648b49bff5138dad28
parent 8325ba03a2895742bdb59af9b96f26b6c0efe118
Author: Toxa <56631470+untoxa@users.noreply.github.com>
Date:   Wed,  6 Jan 2021 21:05:48 +0300

Merge pull request #87 from jserv/drop-system-identifier

Retrieve system identifier from "uname"
Diffstat:
MMakefile7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -37,11 +37,10 @@ DOXYGEN_VER_HAS = $(shell doxygen -v) # Base setup # Extension to add to executables EXEEXTENSION = -# Host operating system identifier. The one below should work for -# most systems. -HOSTOS = ppc-unknown-linux2.2 +# Host operating system identifier. +HOSTOS = $(shell uname -s) # Target operating system identifier. Used in the output zip name. -TARGETOS = ppc-unknown-linux2.2 +TARGETOS ?= $(HOSTOS) # Directory that gbdk should finally end up in TARGETDIR = /opt/gbdk

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