mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
* changes: [poincare] Resolve warning [escher] Fix bug: do not redraw window at each timer fire but only for timer requiring redraw [ion] Add a class State in Keyboard [liba] Correct __aeabi_llsr, __aeabi_llsl with tests [poincare] Change association rules in parser [apps/settings] Open hardware test with 6, t or T events [apps/calculation] Insert ans when starting expression with -, ^, *, +, / [i18n] Change message: "Valeurs"->"Tableau" [i18n] Change message [escher] Repaire optimal size for message text view
24 lines
494 B
Makefile
24 lines
494 B
Makefile
GIT := $(shell command -v git 2> /dev/null)
|
|
PATCH_LEVEL = NONE
|
|
ifdef GIT
|
|
PATCH_LEVEL = `git rev-parse --short HEAD`
|
|
endif
|
|
|
|
SFLAGS += -Iion/include -DKD_CONFIG_H=1
|
|
|
|
include ion/src/$(PLATFORM)/Makefile
|
|
include ion/src/shared/tools/Makefile
|
|
|
|
ion/src/shared/software_version.o: SFLAGS += -DPATCH_LEVEL=$(PATCH_LEVEL) -DVERSION=$(VERSION)
|
|
|
|
objs += $(addprefix ion/src/shared/, \
|
|
events.o \
|
|
software_version.o \
|
|
)
|
|
|
|
tests += $(addprefix ion/test/,\
|
|
crc32.cpp\
|
|
events.cpp\
|
|
keyboard.cpp\
|
|
)
|