aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-09 15:45:39 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-09 15:45:39 -0500
commit967775313dbe04b40f5b70fcfdab02c573f3b57b (patch)
treec7a51d82e256b5e29ccb0dd5de1a47ca15bd39bf /Makefile
parent970bbb473c81975d3c7366260c8228fd4fcc8c4d (diff)
add cppcheck and test targets; some code size reductions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 12 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 624863d..afe8614 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,10 @@ LIBFILE := libalee/libalee.a
all: alee
msp430: CXX := msp430-elf32-g++
-msp430: AR := msp430-elf32-ar
+msp430: AR := msp430-elf32-gcc-ar
msp430: CXXFLAGS += -Os -mmcu=msp430g2553 -ffunction-sections -fdata-sections
-msp430: CXXFLAGS += -DMEMDICTSIZE=200
-msp430: LDFLAGS += -L/opt/msp430-elf32/include -Wl,-gc-sections
+msp430: CXXFLAGS += -DMEMDICTSIZE=200 -flto
+msp430: LDFLAGS += -L/opt/msp430-elf32/include -Tmsp430g2553.ld -Wl,-gc-sections
msp430: clean-lib alee-msp430
small: CXXFLAGS += -Os
@@ -27,8 +27,15 @@ alee: $(LIBFILE)
alee-msp430: $(LIBFILE)
alee-standalone: $(LIBFILE)
+cppcheck:
+ cppcheck --enable=warning,style,information --disable=missingInclude \
+ libalee alee*.cpp *dict.hpp
+
+test: standalone
+ echo "\nbye\n" | ./alee-standalone test/tester.fr test/core.fr
+
$(LIBFILE): $(OBJFILES)
- $(AR) cr $@ $(OBJFILES)
+ $(AR) crs $@ $(OBJFILES)
core.fth.h: alee.dat
xxd -i $< > $@
@@ -44,5 +51,5 @@ clean: clean-lib
clean-lib:
rm -f $(LIBFILE) $(OBJFILES)
-.PHONY: all msp430 small fast standalone clean clean-lib
+.PHONY: all clean clean-lib cppcheck fast msp430 small standalone test