1
0
Fork 0
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:
Braiden Vasco 2017-11-04 08:04:22 +00:00
parent a090c16af5
commit 63c0b3adf3
4 changed files with 36 additions and 6 deletions

View file

@ -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