Complete moving the rest of the previously manual printf tests out of app/tests and into lib/libc/test as a proper unit test.
28 lines
598 B
Makefile
28 lines
598 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
MODULE_SRCS := \
|
|
$(LOCAL_DIR)/cache_tests.c \
|
|
$(LOCAL_DIR)/cbuf_tests.c \
|
|
$(LOCAL_DIR)/clock_tests.c \
|
|
$(LOCAL_DIR)/fibo.c \
|
|
$(LOCAL_DIR)/mem_tests.c \
|
|
$(LOCAL_DIR)/tests.c \
|
|
$(LOCAL_DIR)/thread_tests.c \
|
|
$(LOCAL_DIR)/port_tests.c \
|
|
$(LOCAL_DIR)/v9p_tests.c \
|
|
$(LOCAL_DIR)/v9fs_tests.c \
|
|
|
|
MODULE_FLOAT_SRCS := \
|
|
$(LOCAL_DIR)/benchmarks.c \
|
|
$(LOCAL_DIR)/float.c \
|
|
$(LOCAL_DIR)/float_instructions.S \
|
|
|
|
MODULE_DEPS += \
|
|
lib/cbuf
|
|
|
|
MODULE_COMPILEFLAGS += -fno-builtin
|
|
|
|
include make/module.mk
|