mirror of
https://github.com/plctlab/riscv-operating-system-mooc.git
synced 2025-12-26 09:09:11 +00:00
Makefiles of rvos projects contains too many duplicated contents. Cleanup and move it into a new common.mk file for os only, this will not touch asm samples. Finally the common..mk which was used for both asm & os is removed. Signed-off-by: Wang Chen <wangchen20@iscas.ac.cn>
14 lines
133 B
Makefile
14 lines
133 B
Makefile
SRCS_ASM = \
|
|
start.S \
|
|
mem.S \
|
|
entry.S \
|
|
|
|
SRCS_C = \
|
|
kernel.c \
|
|
uart.c \
|
|
printf.c \
|
|
page.c \
|
|
sched.c \
|
|
|
|
include ../common.mk
|