make: Specify source files to include

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>
This commit is contained in:
Tim Crawford
2022-10-14 08:48:11 -06:00
committed by Tim Crawford
parent ce66685c70
commit ac9631f948
37 changed files with 156 additions and 23 deletions

View File

@@ -0,0 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-only
arch-y += arch.c
arch-y += delay.c
arch-y += time.c

View File

@@ -0,0 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-only
arch-y += gpio.c
arch-y += i2c.c
arch-y += i2c_slave.c
arch-y += uart.c