forked from zirandu/linux-0.11-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.help
47 lines (47 loc) · 1.87 KB
/
Makefile.help
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
help:
@echo "-----Linux 0.11 Lab (http://tinylab.org/linux-0.11-lab)-----"
@echo ""
@echo " :: Compile ::"
@echo ""
@echo " make --generate a kernel floppy Image with a fs on hda1"
@echo " make clean -- clean the object files"
@echo " make distclean -- only keep the source code files"
@echo ""
@echo " :: Test ::"
@echo ""
@echo " make start -- start the kernel in vm (qemu/bochs)"
@echo " make start-fd -- start the kernel with fs in floppy"
@echo " make start-hd -- start the kernel with fs in hard disk"
@echo " make start-hd G=0 -- start with curses based terminal, instead of SDL"
@echo ""
@echo ""
@echo " :: Debug ::"
@echo ""
@echo " make debug -- debug the kernel in qemu/bochs & gdb at port 1234"
@echo " make debug-fd -- debug the kernel with fs in floppy"
@echo " make debug-hd -- debug the kernel with fs in hard disk"
@echo ""
@echo " make debug DST=boot/bootsect.sym -- debug bootsect"
@echo " make debug DST=boot/setup.sym -- debug setup"
@echo ""
@echo " make boot BOCHS=bochs-debugger VM=bochs -- debug with bochs internal debugger"
@echo ""
@echo " make switch -- switch the emulator: qemu and bochs"
@echo " make boot VM=qemu|bochs -- switch the emulator: qemu and bochs"
@echo ""
@echo " :: Read ::"
@echo ""
@echo " make cscope -- genereate the cscope index databases"
@echo " make tags -- generate the tag file"
@echo " make cg -- generate callgraph of the default main entry"
@echo " make cg f=func d=dir|file b=browser -- generate callgraph of func in file/directory"
@echo ""
@echo " :: More ::"
@echo ""
@echo " >>> README.md <<<"
@echo ""
@echo " ~ Enjoy It ~"
@echo ""
@echo "-----Linux 0.11 Lab (http://tinylab.org/linux-0.11-lab)-----"
@echo ""
@echo "---> Linux Kernel Lab (http://tinylab.org/linux-lab) <---"