mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
- Move helpers functions into build/helpers.mak - Move official warning into official targets only
33 lines
780 B
Makefile
33 lines
780 B
Makefile
ion_src += $(addprefix ion/src/shared/, \
|
|
crc32.cpp \
|
|
power.cpp \
|
|
random.cpp \
|
|
timing.cpp \
|
|
dummy/backlight.cpp \
|
|
dummy/battery.cpp \
|
|
dummy/display.cpp \
|
|
dummy/exam_mode.cpp \
|
|
dummy/fcc_id.cpp \
|
|
dummy/led.cpp \
|
|
dummy/serial_number.cpp \
|
|
dummy/stack.cpp \
|
|
dummy/usb.cpp \
|
|
)
|
|
|
|
ion_src += $(addprefix ion/src/simulator/shared/, \
|
|
console_stdio.cpp:-consoledisplay \
|
|
display.cpp:-headless \
|
|
events_keyboard.cpp:-headless \
|
|
events_stdin.cpp:+headless \
|
|
framebuffer_base.cpp \
|
|
framebuffer_png.cpp:+headless \
|
|
keyboard_dummy.cpp:+headless \
|
|
keyboard_sdl.cpp:-headless \
|
|
layout.cpp:-headless \
|
|
main_headless.cpp:+headless \
|
|
main_sdl.cpp:-headless \
|
|
)
|
|
|
|
include ion/src/simulator/$(TARGET)/Makefile
|
|
include ion/src/simulator/external/Makefile
|