aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-10-14 19:17:59 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-10-14 19:17:59 -0400
commit3d7a45e5cddc94d7bd5a3433a561f16fdb5e18a0 (patch)
tree341b4ac9279a250bd5f807a62d27fa16c48d761e /Makefile
parent5991370657b48f5b44fbcc7877a7c26acf07d99e (diff)
msp430.fth
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
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