Files
Upsilon/ion/src/simulator/Makefile
Romain Goyet ada205b1a7 [build] Use variants
- Move helpers functions into build/helpers.mak
- Move official warning into official targets only
2020-04-03 22:26:55 -04:00

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