mirror of
https://github.com/plctlab/riscv-operating-system-mooc.git
synced 2025-12-26 17:19:04 +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>
11 lines
180 B
Makefile
11 lines
180 B
Makefile
# Note: The Makefile for each project is just a symbol-link to the build.mk
|
|
# under the "asm" folder.
|
|
|
|
EXEC = test
|
|
|
|
SRC = ${EXEC}.s
|
|
|
|
GDBINIT = ../gdbinit
|
|
|
|
include ../rule.mk
|