You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
# |
|
# Core Makefile |
|
# |
|
|
|
# Common Compiler Flags ######################################################## |
|
|
|
# Include paths. |
|
COMMON_CFLAGS += -Icore/include |
|
|
|
# Common Source Files ########################################################## |
|
|
|
COMMON_SRCS += core/event.cc |
|
COMMON_SRCS += core/event_loop.cc |
|
COMMON_SRCS += core/event_loop_manager.cc |
|
COMMON_SRCS += core/event_ref_queue.cc |
|
COMMON_SRCS += core/gnss_request_manager.cc |
|
COMMON_SRCS += core/host_comms_manager.cc |
|
COMMON_SRCS += core/init.cc |
|
COMMON_SRCS += core/nanoapp.cc |
|
COMMON_SRCS += core/sensor.cc |
|
COMMON_SRCS += core/sensor_request.cc |
|
COMMON_SRCS += core/sensor_request_manager.cc |
|
COMMON_SRCS += core/static_nanoapps.cc |
|
COMMON_SRCS += core/timer_pool.cc |
|
COMMON_SRCS += core/wifi_request_manager.cc |
|
COMMON_SRCS += core/wifi_scan_request.cc |
|
COMMON_SRCS += core/wwan_request_manager.cc |
|
|
|
# GoogleTest Source Files ###################################################### |
|
|
|
GOOGLETEST_SRCS += core/tests/memory_manager_test.cc |
|
GOOGLETEST_SRCS += core/tests/request_multiplexer_test.cc |
|
GOOGLETEST_SRCS += core/tests/sensor_request_test.cc |
|
GOOGLETEST_SRCS += core/tests/wifi_scan_request_test.cc
|
|
|