forked from rcore-os/zCore
54 lines
984 B
Makefile
54 lines
984 B
Makefile
# Makefile for top level of zCore
|
|
|
|
ARCH ?= x86_64
|
|
|
|
.PHONY: help setup update rootfs libc-test other-test image check doc clean
|
|
|
|
# print top level help
|
|
help:
|
|
cargo xtask help
|
|
|
|
# setup git lfs and git submodules
|
|
setup:
|
|
cargo setup
|
|
|
|
# update toolchain and dependencies
|
|
update:
|
|
cargo update-all
|
|
|
|
# put rootfs for linux mode
|
|
rootfs:
|
|
cargo rootfs $(ARCH)
|
|
|
|
# put libc tests into rootfs
|
|
libc-test:
|
|
cargo libc-test $(ARCH)
|
|
|
|
# put other tests into rootfs
|
|
other-test:
|
|
cargo other-test $(ARCH)
|
|
|
|
# build image from rootfs
|
|
image:
|
|
cargo image $(ARCH)
|
|
|
|
# check code style
|
|
check:
|
|
cargo check-style
|
|
|
|
# build and open project document
|
|
doc:
|
|
cargo doc --open
|
|
|
|
# clean targets
|
|
clean:
|
|
cargo clean
|
|
rm -rf rootfs
|
|
rm -rf ignored/target
|
|
find zCore -maxdepth 1 -name "*.img" -delete
|
|
|
|
rt-test:
|
|
cd rootfs/x86_64 && git clone https://kernel.googlesource.com/pub/scm/linux/kernel/git/clrkwllms/rt-tests --depth 1
|
|
cd rootfs/x86_64/rt-tests && make
|
|
echo x86 gcc build rt-test,now need manual modificy.
|