Replace use of wildcard with list of source files to include. The `-y` suffix is added, but has no significance since conditional compilation has not been added yet. Signed-off-by: Tim Crawford <tcrawford@system76.com>
8 lines
208 B
Makefile
8 lines
208 B
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
KEYMAP?=default
|
|
keyboard-y += keymap/$(KEYMAP).c
|
|
|
|
INCLUDE+=$(wildcard $(KEYBOARD_DIR)/include/board/*.h) $(KEYBOARD_DIR)/keyboard.mk
|
|
CFLAGS+=-I$(KEYBOARD_DIR)/include
|