This lets some arches return a 64bit counter. As a result of fixing this, removed -Wno-format switch in the test app which caused the need to fix a lot of printfs.
28 lines
612 B
Makefile
28 lines
612 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/benchmarks.c \
|
|
$(LOCAL_DIR)/cache_tests.c \
|
|
$(LOCAL_DIR)/cbuf_tests.c \
|
|
$(LOCAL_DIR)/clock_tests.c \
|
|
$(LOCAL_DIR)/fibo.c \
|
|
$(LOCAL_DIR)/float.c \
|
|
$(LOCAL_DIR)/float_instructions.S \
|
|
$(LOCAL_DIR)/float_test_vec.c \
|
|
$(LOCAL_DIR)/mem_tests.c \
|
|
$(LOCAL_DIR)/printf_tests.c \
|
|
$(LOCAL_DIR)/tests.c \
|
|
$(LOCAL_DIR)/thread_tests.c \
|
|
$(LOCAL_DIR)/port_tests.c \
|
|
|
|
MODULE_ARM_OVERRIDE_SRCS := \
|
|
|
|
MODULE_DEPS += \
|
|
lib/cbuf
|
|
|
|
MODULE_COMPILEFLAGS += -fno-builtin
|
|
|
|
include make/module.mk
|