bond/kernel/ke/Rules.mk
secXsQuared 9256f5b575 - Refactored Makefile + included dependencies.
- asm and ld files referencing c symbols are now generated by c preprocessor instead of duplicate definition.
- Finished kernel memory layout. Unfinished init code.
2018-02-11 22:26:03 -05:00

15 lines
262 B
Makefile

include $(MK)/prologue.mk
SRC_$(d) := $(d)/alloc.c \
$(d)/assert.c \
$(d)/atomic.c \
$(d)/boot.c \
$(d)/bug_check.c \
$(d)/intr.c \
$(d)/print.c \
$(d)/rwwlock.c \
$(d)/spin_lock.c
include $(MK)/stdrules.mk
include $(MK)/epilogue.mk