fix spaces/tabs issues in Makefile

This commit is contained in:
Gered 2025-02-09 14:02:13 -05:00
parent 3ea6ec9d8a
commit 60e7c34a85

View file

@ -70,12 +70,12 @@ else ifeq ($(UNIT),F256K2)
LDFLAGS_FOR_UNIT_ROM = src/C256/f256k2-flash.scm --cstartup=f256
LDFLAGS_FOR_UNIT_RAM = src/C256/f256-ld_lc.scm --cstartup=f256
else
$(error "Unrecognized UNIT: $(UNIT)")
$(error Unrecognized UNIT: "$(UNIT)")
endif
ifeq ($(TOOLCHAIN),65816)
ifeq ($(strip $(CALYPSI_65816_ROOT)),)
$(error "Please set CALYPSI_65816_ROOT in your environment!")
$(error Please set CALYPSI_65816_ROOT in your environment!)
endif
CC = cc65816
@ -83,7 +83,7 @@ ifeq ($(TOOLCHAIN),65816)
LD = ln65816
TOOLCHAIN_ROOT = $(CALYPSI_65816_ROOT)
else
$(error "Unrecognized TOOLCHAIN: $(TOOLCHAIN)")
$(error Unrecognized TOOLCHAIN: "$(TOOLCHAIN)")
endif
SRC_DIR = src