f007d0aa3d
This is to match all the other ports. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
12 lines
303 B
Makefile
12 lines
303 B
Makefile
BOARD_PCA10059_DIR = boards/PCA10059/modules
|
|
|
|
INC += -I./$(BOARD_PCA10059_DIR)
|
|
CFLAGS += -DBOARD_SPECIFIC_MODULES
|
|
|
|
SRC_BOARD_MODULES = $(addprefix $(BOARD_PCA10059_DIR)/,\
|
|
recover_uicr_regout0.c \
|
|
)
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_BOARD_MODULES:.c=.o))
|
|
|