mirror of
https://github.com/tailix/kernel.git
synced 2025-10-30 23:28:06 -04:00
Add test for "kmemset"
This commit is contained in:
parent
a090c16af5
commit
63c0b3adf3
4 changed files with 36 additions and 6 deletions
11
Makefile
11
Makefile
|
|
@ -9,13 +9,15 @@ run: run-iso
|
|||
all: all-kernel all-iso all-libk all-test
|
||||
clean: clean-kernel clean-iso clean-libk clean-test
|
||||
|
||||
test: run-test
|
||||
|
||||
all-kernel: all-libk
|
||||
make all -C arch
|
||||
|
||||
clean-kernel:
|
||||
make clean -C arch
|
||||
|
||||
run-iso: all-kernel
|
||||
run-iso: all-iso
|
||||
make run -C iso
|
||||
|
||||
all-iso: all-kernel
|
||||
|
|
@ -30,8 +32,13 @@ all-libk:
|
|||
clean-libk:
|
||||
make clean -C libk
|
||||
|
||||
test-libk: all-libk
|
||||
test-libk: all-test
|
||||
make run -C test/libk
|
||||
|
||||
run-test: test-libk
|
||||
|
||||
all-test: all-libk
|
||||
make all -C test/libk
|
||||
|
||||
clean-test:
|
||||
make clean -C test/libk
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue