forked from vlang/vinix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GNUmakefile
90 lines (70 loc) · 2.18 KB
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# GNUmakefile: Main makefile of the project.
# Code is governed by the GPL-2.0 license.
# Copyright (C) 2021-2022 The Vinix authors.
QEMUFLAGS ?= -M q35,smm=off -m 8G -cdrom vinix.iso -serial stdio -smp 4
.PHONY: all
all:
rm -f vinix.iso
$(MAKE) vinix.iso
vinix.iso: jinx
rm -f builds/kernel.built builds/kernel.packaged
$(MAKE) distro-base
./build-support/makeiso.sh
.PHONY: debug
debug:
JINX_CONFIG_FILE=jinx-config-debug $(MAKE) all
jinx:
curl -Lo jinx https://github.com/mintsuki/jinx/raw/e86d99f1156b33cd5b37a8bb25317949511a28d0/jinx
chmod +x jinx
.PHONY: distro-full
distro-full: jinx
./jinx build-all
.PHONY: distro-base
distro-base: jinx
./jinx build base-files kernel init bash binutils bzip2 coreutils diffutils findutils gawk gcc gmp grep gzip less make mpc mpfr nano ncurses pcre2 readline sed tar tzdata util-vinix xz zlib zstd
.PHONY: run-kvm
run-kvm: vinix.iso
qemu-system-x86_64 -enable-kvm -cpu host $(QEMUFLAGS)
.PHONY: run-hvf
run-hvf: vinix.iso
qemu-system-x86_64 -accel hvf -cpu host $(QEMUFLAGS)
ovmf:
mkdir -p ovmf
cd ovmf && curl -o OVMF.fd https://retrage.github.io/edk2-nightly/bin/RELEASEX64_OVMF.fd
.PHONY: run-uefi
run-uefi: vinix.iso ovmf
qemu-system-x86_64 -enable-kvm -cpu host $(QEMUFLAGS) -bios ovmf/OVMF.fd
.PHONY: run-bochs
run-bochs: vinix.iso
bochs -f bochsrc
.PHONY: run-lingemu
run-lingemu: vinix.iso
lingemu runvirt -m 8192 --diskcontroller type=ahci,name=ahcibus1 --disk vinix.iso,disktype=cdrom,controller=ahcibus1
.PHONY: run
run: vinix.iso
qemu-system-x86_64 $(QEMUFLAGS)
.PHONY: kernel-clean
kernel-clean:
make -C kernel clean
rm -rf builds/kernel* pkgs/kernel*
.PHONY: util-vinix-clean
util-vinix-clean:
make -C util-vinix clean
rm -rf builds/util-vinix* pkgs/util-vinix*
.PHONY: init-clean
init-clean:
rm -rf init/init
rm -rf builds/init* pkgs/init*
.PHONY: base-files-clean
base-files-clean:
rm -rf builds/base-files* pkgs/base-files*
.PHONY: clean
clean: kernel-clean util-vinix-clean init-clean base-files-clean
rm -rf iso_root sysroot vinix.iso initramfs.tar
.PHONY: distclean
distclean: jinx
make -C kernel distclean
./jinx clean
rm -rf iso_root sysroot vinix.iso initramfs.tar jinx ovmf
chmod -R 777 .jinx-cache
rm -rf .jinx-cache