7450ef6c4d
synchronize virtual memory system works. adding kernel virtual memory management layer for page-based MMU enabled architecture porting libcpu MMU codes porting lwp memory related codes
9 lines
171 B
Python
9 lines
171 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('ADT', src, depend = [], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|