You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
CXXFLAGS += -std=c++17 -g3 -ggdb -O0 \
|
|
-pedantic -Wall -Wextra -Werror -Weffc++ -Wconversion \
|
|
-fno-exceptions -fno-threadsafe-statics -fno-rtti #-fstack-usage
|
|
|
|
CXXFILES := $(wildcard libalee/*.cpp)
|
|
OBJFILES := $(subst .cpp,.o,$(CXXFILES))
|
|
LIBFILE := libalee/libalee.a
|
|
|
|
all: alee
|
|
|
|
msp430: CXX := msp430-elf32-g++
|
|
msp430: AR := msp430-elf32-gcc-ar
|
|
msp430: CXXFLAGS += -I.
|
|
msp430: CXXFLAGS += -Os -mmcu=msp430g2553 -ffunction-sections -fdata-sections
|
|
msp430: CXXFLAGS += -DMEMDICTSIZE=200 -flto
|
|
msp430: LDFLAGS += -L/opt/msp430-elf32/include -Tmsp430/msp430g2553.ld -Wl,-gc-sections
|
|
msp430: clean-lib msp430/alee-msp430
|
|
|
|
small: CXXFLAGS += -Os
|
|
small: alee
|
|
|
|
fast: CXXFLAGS += -O3 -march=native -mtune=native -flto
|
|
fast: alee
|
|
|
|
standalone: alee-standalone
|
|
|
|
alee: $(LIBFILE)
|
|
msp430/alee-msp430: $(LIBFILE)
|
|
alee-standalone: core.fth.h $(LIBFILE)
|
|
|
|
cppcheck:
|
|
cppcheck --enable=warning,style,information --disable=missingInclude \
|
|
libalee alee*.cpp *dict.hpp
|
|
|
|
test: standalone
|
|
echo "\nbye\n" | ./alee-standalone forth/core-ext.fth forth/test/tester.fr forth/test/core.fr
|
|
|
|
$(LIBFILE): $(OBJFILES)
|
|
$(AR) crs $@ $(OBJFILES)
|
|
|
|
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
|
|
|
|
clean: clean-lib
|
|
rm -f alee alee-standalone msp430/alee-msp430
|
|
rm -f alee.dat core.fth.h
|
|
|
|
clean-lib:
|
|
rm -f $(LIBFILE) $(OBJFILES)
|
|
|
|
.PHONY: all clean clean-lib cppcheck fast msp430 small standalone test
|
|
|