From 3d7a45e5cddc94d7bd5a3433a561f16fdb5e18a0 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 14 Oct 2023 19:17:59 -0400 Subject: msp430.fth --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d33a1b0..d6c6eff 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,8 @@ CXXFILES := $(wildcard libalee/*.cpp) OBJFILES := $(subst .cpp,.o,$(CXXFILES)) LIBFILE := libalee/libalee.a +STANDALONE := forth/core.fth + all: alee msp430: CXX := msp430-elf-g++ @@ -16,6 +18,9 @@ msp430: CXXFLAGS += -DMEMDICTSIZE=128 -flto -fno-asynchronous-unwind-tables -fno msp430: LDFLAGS += -L/usr/msp430-elf/usr/include -Tmsp430/msp430g2553.ld -Wl,-gc-sections msp430: clean-lib msp430/alee-msp430 +msp430-prep: STANDALONE += forth/msp430.fth +msp430-prep: core.fth.h + small: CXXFLAGS += -Os -fno-asynchronous-unwind-tables -fno-threadsafe-statics -fno-stack-protector small: alee @@ -42,8 +47,8 @@ core.fth.h: alee.dat xxd -i $< > $@ sed -i "s/unsigned /static const &/" $@ -alee.dat: alee forth/core.fth - echo "3 sys" | ./alee forth/core.fth +alee.dat: alee $(STANDALONE) + echo "3 sys" | ./alee $(STANDALONE) clean: clean-lib rm -f alee alee-standalone msp430/alee-msp430 -- cgit v1.2.3