diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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 |