fix spaces/tabs issues in Makefile
This commit is contained in:
parent
3ea6ec9d8a
commit
60e7c34a85
6
Makefile
6
Makefile
|
@ -70,12 +70,12 @@ else ifeq ($(UNIT),F256K2)
|
||||||
LDFLAGS_FOR_UNIT_ROM = src/C256/f256k2-flash.scm --cstartup=f256
|
LDFLAGS_FOR_UNIT_ROM = src/C256/f256k2-flash.scm --cstartup=f256
|
||||||
LDFLAGS_FOR_UNIT_RAM = src/C256/f256-ld_lc.scm --cstartup=f256
|
LDFLAGS_FOR_UNIT_RAM = src/C256/f256-ld_lc.scm --cstartup=f256
|
||||||
else
|
else
|
||||||
$(error "Unrecognized UNIT: $(UNIT)")
|
$(error Unrecognized UNIT: "$(UNIT)")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(TOOLCHAIN),65816)
|
ifeq ($(TOOLCHAIN),65816)
|
||||||
ifeq ($(strip $(CALYPSI_65816_ROOT)),)
|
ifeq ($(strip $(CALYPSI_65816_ROOT)),)
|
||||||
$(error "Please set CALYPSI_65816_ROOT in your environment!")
|
$(error Please set CALYPSI_65816_ROOT in your environment!)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CC = cc65816
|
CC = cc65816
|
||||||
|
@ -83,7 +83,7 @@ ifeq ($(TOOLCHAIN),65816)
|
||||||
LD = ln65816
|
LD = ln65816
|
||||||
TOOLCHAIN_ROOT = $(CALYPSI_65816_ROOT)
|
TOOLCHAIN_ROOT = $(CALYPSI_65816_ROOT)
|
||||||
else
|
else
|
||||||
$(error "Unrecognized TOOLCHAIN: $(TOOLCHAIN)")
|
$(error Unrecognized TOOLCHAIN: "$(TOOLCHAIN)")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SRC_DIR = src
|
SRC_DIR = src
|
||||||
|
|
Loading…
Reference in a new issue