Files
lk/dev/rules.mk
Travis Geiselbrecht 2367686854 [make] add a way for a module to opt into additional warnings
Move -Wmissing-declarations and -Wmissing-prototypes into this bucket.
Opt in most of the core top level modules in the system. More to follow.
2022-10-23 23:16:48 -07:00

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