Move -Wmissing-declarations and -Wmissing-prototypes into this bucket. Opt in most of the core top level modules in the system. More to follow.
18 lines
373 B
Makefile
18 lines
373 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/dev.c \
|
|
$(LOCAL_DIR)/driver.c \
|
|
$(LOCAL_DIR)/class/block_api.c \
|
|
$(LOCAL_DIR)/class/i2c_api.c \
|
|
$(LOCAL_DIR)/class/spi_api.c \
|
|
$(LOCAL_DIR)/class/uart_api.c \
|
|
$(LOCAL_DIR)/class/fb_api.c \
|
|
$(LOCAL_DIR)/class/netif_api.c \
|
|
|
|
MODULE_OPTIONS := extra_warnings
|
|
|
|
include make/module.mk
|