git.y1.nz

gbdk-2020

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

commit 8849193ffc7e22511743a4c1b130784e716f5988
parent 6e5eb4421a1015d03329e758bfb58d1fcf0428dd
Author: Panagiotis Georgiadis <pgeorgia@redhat.com>
Date:   Mon, 11 Aug 2025 20:43:47 +0200

Add slash between GBDK_HOME and bin path in example Makefiles (#806) (drpaneas)

- Addresses https://github.com/gbdk-2020/gbdk-2020/issues/805

Diffstat:
Mgbdk-lib/examples/cross-platform/banks/Makefile2+-
Mgbdk-lib/examples/cross-platform/banks_autobank/Makefile2+-
Mgbdk-lib/examples/cross-platform/banks_farptr/Makefile2+-
Mgbdk-lib/examples/cross-platform/banks_nonintrinsic/Makefile2+-
Mgbdk-lib/examples/cross-platform/bcd/Makefile2+-
Mgbdk-lib/examples/cross-platform/display_system/Makefile2+-
Mgbdk-lib/examples/cross-platform/emu_debug/Makefile2+-
Mgbdk-lib/examples/cross-platform/fonts/Makefile2+-
Mgbdk-lib/examples/cross-platform/gbdecompress/Makefile2+-
Mgbdk-lib/examples/cross-platform/gbprinter/Makefile2+-
Mgbdk-lib/examples/cross-platform/incbin/Makefile2+-
Mgbdk-lib/examples/cross-platform/irq/Makefile2+-
Mgbdk-lib/examples/cross-platform/joytest/Makefile2+-
Mgbdk-lib/examples/cross-platform/large_map/Makefile2+-
Mgbdk-lib/examples/cross-platform/libc_memcpy/Makefile2+-
Mgbdk-lib/examples/cross-platform/libc_string/Makefile2+-
Mgbdk-lib/examples/cross-platform/logo/Makefile4++--
Mgbdk-lib/examples/cross-platform/metasprites/Makefile2+-
Mgbdk-lib/examples/cross-platform/multiplayer/Makefile2+-
Mgbdk-lib/examples/cross-platform/platformer_template/Makefile4++--
Mgbdk-lib/examples/cross-platform/pong/Makefile2+-
Mgbdk-lib/examples/cross-platform/randtest/Makefile2+-
Mgbdk-lib/examples/cross-platform/rle_map/Makefile2+-
Mgbdk-lib/examples/cross-platform/scroller/Makefile2+-
Mgbdk-lib/examples/cross-platform/simple_physics/Makefile2+-
Mgbdk-lib/examples/cross-platform/text_advanced_dialogue/Makefile4++--
Mgbdk-lib/examples/cross-platform/text_basic/Makefile4++--
Mgbdk-lib/examples/cross-platform/text_typewriter/Makefile4++--
Mgbdk-lib/examples/gb/apa_image/Makefile4++--
Mgbdk-lib/examples/gb/colorbar/Makefile2+-
Mgbdk-lib/examples/gb/comm/Makefile2+-
Mgbdk-lib/examples/gb/crash/Makefile2+-
Mgbdk-lib/examples/gb/dscan/Makefile2+-
Mgbdk-lib/examples/gb/filltest/Makefile2+-
Mgbdk-lib/examples/gb/galaxy/Makefile2+-
Mgbdk-lib/examples/gb/gb-dtmf/Makefile2+-
Mgbdk-lib/examples/gb/gbtype/Makefile2+-
Mgbdk-lib/examples/gb/hblank_copy/Makefile4++--
Mgbdk-lib/examples/gb/hicolor/Makefile4++--
Mgbdk-lib/examples/gb/isr_vector/Makefile2+-
Mgbdk-lib/examples/gb/lcd_isr_wobble/Makefile2+-
Mgbdk-lib/examples/gb/linkerfile/Makefile2+-
Mgbdk-lib/examples/gb/mbc3_rtc/Makefile2+-
Mgbdk-lib/examples/gb/mbc5_rumble/Makefile2+-
Mgbdk-lib/examples/gb/mbc7_accelerometer/Makefile2+-
Mgbdk-lib/examples/gb/paint/Makefile2+-
Mgbdk-lib/examples/gb/ram_function/Makefile2+-
Mgbdk-lib/examples/gb/rpn/Makefile2+-
Mgbdk-lib/examples/gb/sgb_border/Makefile4++--
Mgbdk-lib/examples/gb/sgb_pong/Makefile2+-
Mgbdk-lib/examples/gb/sgb_sfx/Makefile2+-
Mgbdk-lib/examples/gb/sound/Makefile2+-
Mgbdk-lib/examples/gb/space/Makefile2+-
Mgbdk-lib/examples/gb/template_minimal/Makefile2+-
Mgbdk-lib/examples/gb/template_subfolders/Makefile2+-
Mgbdk-lib/examples/gb/wav_sample/Makefile2+-
Mgbdk-lib/examples/megaduck/laptop_keyboard/Makefile2+-
Mgbdk-lib/examples/megaduck/laptop_rtc/Makefile2+-
Mgbdk-lib/examples/megaduck/laptop_speech/Makefile2+-
Mgbdk-lib/examples/msxdos/hello/Makefile2+-
Mgbdk-lib/examples/msxdos/smoke/Makefile2+-
Mgbdk-lib/examples/msxdos/test/Makefile2+-
Mgbdk-lib/examples/nes/smoke/Makefile2+-
Mgbdk-lib/examples/nes/snes_joypads/Makefile2+-
Mgbdk-lib/examples/sms/pause_button/Makefile2+-
Mgbdk-lib/examples/sms/wav_sample/Makefile2+-
66 files changed, 75 insertions(+), 75 deletions(-)

diff --git a/gbdk-lib/examples/cross-platform/banks/Makefile b/gbdk-lib/examples/cross-platform/banks/Makefile @@ -6,7 +6,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/banks_autobank/Makefile b/gbdk-lib/examples/cross-platform/banks_autobank/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/banks_farptr/Makefile b/gbdk-lib/examples/cross-platform/banks_farptr/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/banks_nonintrinsic/Makefile b/gbdk-lib/examples/cross-platform/banks_nonintrinsic/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/bcd/Makefile b/gbdk-lib/examples/cross-platform/bcd/Makefile @@ -6,7 +6,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/display_system/Makefile b/gbdk-lib/examples/cross-platform/display_system/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/emu_debug/Makefile b/gbdk-lib/examples/cross-platform/emu_debug/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/fonts/Makefile b/gbdk-lib/examples/cross-platform/fonts/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/gbdecompress/Makefile b/gbdk-lib/examples/cross-platform/gbdecompress/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) diff --git a/gbdk-lib/examples/cross-platform/gbprinter/Makefile b/gbdk-lib/examples/cross-platform/gbprinter/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) diff --git a/gbdk-lib/examples/cross-platform/incbin/Makefile b/gbdk-lib/examples/cross-platform/incbin/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/irq/Makefile b/gbdk-lib/examples/cross-platform/irq/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/joytest/Makefile b/gbdk-lib/examples/cross-platform/joytest/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/large_map/Makefile b/gbdk-lib/examples/cross-platform/large_map/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) diff --git a/gbdk-lib/examples/cross-platform/libc_memcpy/Makefile b/gbdk-lib/examples/cross-platform/libc_memcpy/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/libc_string/Makefile b/gbdk-lib/examples/cross-platform/libc_string/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/logo/Makefile b/gbdk-lib/examples/cross-platform/logo/Makefile @@ -4,8 +4,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSETS = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSETS = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/metasprites/Makefile b/gbdk-lib/examples/cross-platform/metasprites/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) diff --git a/gbdk-lib/examples/cross-platform/multiplayer/Makefile b/gbdk-lib/examples/cross-platform/multiplayer/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/platformer_template/Makefile b/gbdk-lib/examples/cross-platform/platformer_template/Makefile @@ -10,8 +10,8 @@ ifndef GBDK_HOME endif -PNG2ASSET = $(GBDK_HOME)bin/png2asset -LCC = $(GBDK_HOME)bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/pong/Makefile b/gbdk-lib/examples/cross-platform/pong/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/randtest/Makefile b/gbdk-lib/examples/cross-platform/randtest/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/rle_map/Makefile b/gbdk-lib/examples/cross-platform/rle_map/Makefile @@ -6,7 +6,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/scroller/Makefile b/gbdk-lib/examples/cross-platform/scroller/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/simple_physics/Makefile b/gbdk-lib/examples/cross-platform/simple_physics/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) diff --git a/gbdk-lib/examples/cross-platform/text_advanced_dialogue/Makefile b/gbdk-lib/examples/cross-platform/text_advanced_dialogue/Makefile @@ -4,8 +4,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/text_basic/Makefile b/gbdk-lib/examples/cross-platform/text_basic/Makefile @@ -4,8 +4,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/cross-platform/text_typewriter/Makefile b/gbdk-lib/examples/cross-platform/text_typewriter/Makefile @@ -4,8 +4,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/gb/apa_image/Makefile b/gbdk-lib/examples/gb/apa_image/Makefile @@ -9,8 +9,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/colorbar/Makefile b/gbdk-lib/examples/gb/colorbar/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/comm/Makefile b/gbdk-lib/examples/gb/comm/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = comm.gb diff --git a/gbdk-lib/examples/gb/crash/Makefile b/gbdk-lib/examples/gb/crash/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = crash.gb diff --git a/gbdk-lib/examples/gb/dscan/Makefile b/gbdk-lib/examples/gb/dscan/Makefile @@ -3,7 +3,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wm-yc +LCC = $(GBDK_HOME)/bin/lcc -Wm-yc BINS = dscan.gb diff --git a/gbdk-lib/examples/gb/filltest/Makefile b/gbdk-lib/examples/gb/filltest/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = filltest.gb diff --git a/gbdk-lib/examples/gb/galaxy/Makefile b/gbdk-lib/examples/gb/galaxy/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = galaxy.gb diff --git a/gbdk-lib/examples/gb/gb-dtmf/Makefile b/gbdk-lib/examples/gb/gb-dtmf/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m BINS = gb-dtmf.gb diff --git a/gbdk-lib/examples/gb/gbtype/Makefile b/gbdk-lib/examples/gb/gbtype/Makefile @@ -8,7 +8,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Flag to enable optional Super Game Boy support in the ROM Cartridge header LCCFLAGS = -Wm-ys diff --git a/gbdk-lib/examples/gb/hblank_copy/Makefile b/gbdk-lib/examples/gb/hblank_copy/Makefile @@ -9,8 +9,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset LCCFLAGS += -Wm-yt0x19 -Wm-yoA -autobank -I$(OBJDIR) diff --git a/gbdk-lib/examples/gb/hicolor/Makefile b/gbdk-lib/examples/gb/hicolor/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # You can set flags for LCC here LCCFLAGS += -Wm-yC # GB Color required for Hi Color @@ -16,7 +16,7 @@ LCCFLAGS += -autobank -Wb-v -Wb-ext=.rel # Auto-bank packing # LCCFLAGS += -Wb-random -Wb-max=3 -Wb-v # For Hi Color: -PNG2HICOLORGB = $(GBDK_HOME)bin/png2hicolorgb +PNG2HICOLORGB = $(GBDK_HOME)/bin/png2hicolorgb # Use conversion method type 1, Faster Adaptive attribute sizing for Left / Right side of screen, C source output # Bank 255 for auto-banking HICOLOR_FLAGS = --type=1 -L=1 -R=1 --csource --bank=255 diff --git a/gbdk-lib/examples/gb/isr_vector/Makefile b/gbdk-lib/examples/gb/isr_vector/Makefile @@ -3,7 +3,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j -Wm-yS +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j -Wm-yS BINS = lcd_isr_wobble.gb diff --git a/gbdk-lib/examples/gb/lcd_isr_wobble/Makefile b/gbdk-lib/examples/gb/lcd_isr_wobble/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wl-j -Wm-yS +LCC = $(GBDK_HOME)/bin/lcc -Wl-j -Wm-yS BINS = lcd_isr_wobble.gb diff --git a/gbdk-lib/examples/gb/linkerfile/Makefile b/gbdk-lib/examples/gb/linkerfile/Makefile @@ -9,7 +9,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/mbc3_rtc/Makefile b/gbdk-lib/examples/gb/mbc3_rtc/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/gb/mbc5_rumble/Makefile b/gbdk-lib/examples/gb/mbc5_rumble/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/gb/mbc7_accelerometer/Makefile b/gbdk-lib/examples/gb/mbc7_accelerometer/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/gb/paint/Makefile b/gbdk-lib/examples/gb/paint/Makefile @@ -3,7 +3,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = paint.gb diff --git a/gbdk-lib/examples/gb/ram_function/Makefile b/gbdk-lib/examples/gb/ram_function/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = ram_fn.gb diff --git a/gbdk-lib/examples/gb/rpn/Makefile b/gbdk-lib/examples/gb/rpn/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = rpn.gb diff --git a/gbdk-lib/examples/gb/sgb_border/Makefile b/gbdk-lib/examples/gb/sgb_border/Makefile @@ -4,8 +4,8 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -PNG2ASSET = $(GBDK_HOME)bin/png2asset +LCC = $(GBDK_HOME)/bin/lcc +PNG2ASSET = $(GBDK_HOME)/bin/png2asset # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/sgb_pong/Makefile b/gbdk-lib/examples/gb/sgb_pong/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j -Wm-ys +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j -Wm-ys BINS = sgb_pong.gb diff --git a/gbdk-lib/examples/gb/sgb_sfx/Makefile b/gbdk-lib/examples/gb/sgb_sfx/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/sound/Makefile b/gbdk-lib/examples/gb/sound/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wa-l -Wl-m -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -Wa-l -Wl-m -Wl-j BINS = sound.gb sound.duck # BINS = sound.gb sound.duck sound.pocket diff --git a/gbdk-lib/examples/gb/space/Makefile b/gbdk-lib/examples/gb/space/Makefile @@ -3,7 +3,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -Wl-m -Wl-w -Wl-j -Wm-yS +LCC = $(GBDK_HOME)/bin/lcc -Wl-m -Wl-w -Wl-j -Wm-yS BINS = space.gb diff --git a/gbdk-lib/examples/gb/template_minimal/Makefile b/gbdk-lib/examples/gb/template_minimal/Makefile @@ -8,7 +8,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/template_subfolders/Makefile b/gbdk-lib/examples/gb/template_subfolders/Makefile @@ -9,7 +9,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON ifdef GBDK_DEBUG diff --git a/gbdk-lib/examples/gb/wav_sample/Makefile b/gbdk-lib/examples/gb/wav_sample/Makefile @@ -9,7 +9,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc LCCFLAGS += -Wl-yt1 -Wl-yo4 diff --git a/gbdk-lib/examples/megaduck/laptop_keyboard/Makefile b/gbdk-lib/examples/megaduck/laptop_keyboard/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/megaduck/laptop_rtc/Makefile b/gbdk-lib/examples/megaduck/laptop_rtc/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/megaduck/laptop_speech/Makefile b/gbdk-lib/examples/megaduck/laptop_speech/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # Set platforms to build here, spaced separated. (These are in the separate Makefile.targets) # They can also be built/cleaned individually: "make gg" and "make gg-clean" diff --git a/gbdk-lib/examples/msxdos/hello/Makefile b/gbdk-lib/examples/msxdos/hello/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -v -mz80:msxdos -Wm-yoA -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -v -mz80:msxdos -Wm-yoA -Wl-j BINS = test.com diff --git a/gbdk-lib/examples/msxdos/smoke/Makefile b/gbdk-lib/examples/msxdos/smoke/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -mz80:msxdos -Wm-yoA -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -mz80:msxdos -Wm-yoA -Wl-j BINS = smoketest.com diff --git a/gbdk-lib/examples/msxdos/test/Makefile b/gbdk-lib/examples/msxdos/test/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -mz80:msxdos -Wm-yoA -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -mz80:msxdos -Wm-yoA -Wl-j BINS = test.com diff --git a/gbdk-lib/examples/nes/smoke/Makefile b/gbdk-lib/examples/nes/smoke/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -mmos6502:nes -Wm-yoA -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -mmos6502:nes -Wm-yoA -Wl-j BINS = smoketest.nes diff --git a/gbdk-lib/examples/nes/snes_joypads/Makefile b/gbdk-lib/examples/nes/snes_joypads/Makefile @@ -4,7 +4,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc -mmos6502:nes -Wm-yoA -Wl-j +LCC = $(GBDK_HOME)/bin/lcc -mmos6502:nes -Wm-yoA -Wl-j BINS = snes_joypads.nes diff --git a/gbdk-lib/examples/sms/pause_button/Makefile b/gbdk-lib/examples/sms/pause_button/Makefile @@ -9,7 +9,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON diff --git a/gbdk-lib/examples/sms/wav_sample/Makefile b/gbdk-lib/examples/sms/wav_sample/Makefile @@ -9,7 +9,7 @@ ifndef GBDK_HOME GBDK_HOME = ../../../ endif -LCC = $(GBDK_HOME)bin/lcc +LCC = $(GBDK_HOME)/bin/lcc # GBDK_DEBUG = ON

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