《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

279 lines
7.2 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. PROJ := 8
  2. EMPTY :=
  3. SPACE := $(EMPTY) $(EMPTY)
  4. SLASH := /
  5. V := @
  6. # try to infer the correct GCCPREFX
  7. ifndef GCCPREFIX
  8. GCCPREFIX := $(shell if i386-ucore-elf-objdump -i 2>&1 | grep '^elf32-i386$$' >/dev/null 2>&1; \
  9. then echo 'i386-ucore-elf-'; \
  10. elif objdump -i 2>&1 | grep 'elf32-i386' >/dev/null 2>&1; \
  11. then echo ''; \
  12. else echo "***" 1>&2; \
  13. echo "*** Error: Couldn't find an i386-ucore-elf version of GCC/binutils." 1>&2; \
  14. echo "*** Is the directory with i386-ucore-elf-gcc in your PATH?" 1>&2; \
  15. echo "*** If your i386-ucore-elf toolchain is installed with a command" 1>&2; \
  16. echo "*** prefix other than 'i386-ucore-elf-', set your GCCPREFIX" 1>&2; \
  17. echo "*** environment variable to that prefix and run 'make' again." 1>&2; \
  18. echo "*** To turn off this error, run 'gmake GCCPREFIX= ...'." 1>&2; \
  19. echo "***" 1>&2; exit 1; fi)
  20. endif
  21. # try to infer the correct QEMU
  22. ifndef QEMU
  23. QEMU := $(shell if which qemu-system-i386 > /dev/null; \
  24. then echo 'qemu-system-i386'; exit; \
  25. elif which i386-ucore-elf-qemu > /dev/null; \
  26. then echo 'i386-ucore-elf-qemu'; exit; \
  27. else \
  28. echo "***" 1>&2; \
  29. echo "*** Error: Couldn't find a working QEMU executable." 1>&2; \
  30. echo "*** Is the directory containing the qemu binary in your PATH" 1>&2; \
  31. echo "***" 1>&2; exit 1; fi)
  32. endif
  33. # eliminate default suffix rules
  34. .SUFFIXES: .c .S .h
  35. # delete target files if there is an error (or make is interrupted)
  36. .DELETE_ON_ERROR:
  37. # define compiler and flags
  38. HOSTCC := gcc
  39. HOSTCFLAGS := -g -Wall -O2
  40. GDB := $(GCCPREFIX)gdb
  41. CC := $(GCCPREFIX)gcc
  42. CFLAGS := -fno-builtin -Wall -ggdb -m32 -gstabs -nostdinc $(DEFS)
  43. CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector)
  44. CTYPE := c S
  45. LD := $(GCCPREFIX)ld
  46. LDFLAGS := -m $(shell $(LD) -V | grep elf_i386 2>/dev/null)
  47. LDFLAGS += -nostdlib
  48. OBJCOPY := $(GCCPREFIX)objcopy
  49. OBJDUMP := $(GCCPREFIX)objdump
  50. COPY := cp
  51. MKDIR := mkdir -p
  52. MV := mv
  53. RM := rm -f
  54. AWK := awk
  55. SED := sed
  56. SH := sh
  57. TR := tr
  58. TOUCH := touch -c
  59. OBJDIR := obj
  60. BINDIR := bin
  61. ALLOBJS :=
  62. ALLDEPS :=
  63. TARGETS :=
  64. include tools/function.mk
  65. listf_cc = $(call listf,$(1),$(CTYPE))
  66. # for cc
  67. add_files_cc = $(call add_files,$(1),$(CC),$(CFLAGS) $(3),$(2),$(4))
  68. create_target_cc = $(call create_target,$(1),$(2),$(3),$(CC),$(CFLAGS))
  69. # for hostcc
  70. add_files_host = $(call add_files,$(1),$(HOSTCC),$(HOSTCFLAGS),$(2),$(3))
  71. create_target_host = $(call create_target,$(1),$(2),$(3),$(HOSTCC),$(HOSTCFLAGS))
  72. cgtype = $(patsubst %.$(2),%.$(3),$(1))
  73. objfile = $(call toobj,$(1))
  74. asmfile = $(call cgtype,$(call toobj,$(1)),o,asm)
  75. outfile = $(call cgtype,$(call toobj,$(1)),o,out)
  76. symfile = $(call cgtype,$(call toobj,$(1)),o,sym)
  77. # for match pattern
  78. match = $(shell echo $(2) | $(AWK) '{for(i=1;i<=NF;i++){if(match("$(1)","^"$$(i)"$$")){exit 1;}}}'; echo $$?)
  79. # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  80. # include kernel/user
  81. INCLUDE += libs/
  82. CFLAGS += $(addprefix -I,$(INCLUDE))
  83. LIBDIR += libs
  84. $(call add_files_cc,$(call listf_cc,$(LIBDIR)),libs,)
  85. # -------------------------------------------------------------------
  86. # kernel
  87. KINCLUDE += kern/debug/ \
  88. kern/driver/ \
  89. kern/trap/ \
  90. kern/mm/ \
  91. kern/libs/ \
  92. kern/sync/ \
  93. kern/fs/ \
  94. kern/process \
  95. kern/schedule
  96. KSRCDIR += kern/init \
  97. kern/libs \
  98. kern/debug \
  99. kern/driver \
  100. kern/trap \
  101. kern/mm \
  102. kern/sync \
  103. kern/fs \
  104. kern/process \
  105. kern/schedule
  106. KCFLAGS += $(addprefix -I,$(KINCLUDE))
  107. $(call add_files_cc,$(call listf_cc,$(KSRCDIR)),kernel,$(KCFLAGS))
  108. KOBJS = $(call read_packet,kernel libs)
  109. # create kernel target
  110. kernel = $(call totarget,kernel)
  111. $(kernel): tools/kernel.ld
  112. $(kernel): $(KOBJS)
  113. @echo + ld $@
  114. $(V)$(LD) $(LDFLAGS) -T tools/kernel.ld -o $@ $(KOBJS)
  115. @$(OBJDUMP) -S $@ > $(call asmfile,kernel)
  116. @$(OBJDUMP) -t $@ | $(SED) '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $(call symfile,kernel)
  117. $(call create_target,kernel)
  118. # -------------------------------------------------------------------
  119. # create bootblock
  120. bootfiles = $(call listf_cc,boot)
  121. $(foreach f,$(bootfiles),$(call cc_compile,$(f),$(CC),$(CFLAGS) -Os -nostdinc))
  122. bootblock = $(call totarget,bootblock)
  123. $(bootblock): $(call toobj,boot/bootasm.S) $(call toobj,$(bootfiles)) | $(call totarget,sign)
  124. @echo + ld $@
  125. $(V)$(LD) $(LDFLAGS) -N -T tools/boot.ld $^ -o $(call toobj,bootblock)
  126. @$(OBJDUMP) -S $(call objfile,bootblock) > $(call asmfile,bootblock)
  127. @$(OBJCOPY) -S -O binary $(call objfile,bootblock) $(call outfile,bootblock)
  128. @$(call totarget,sign) $(call outfile,bootblock) $(bootblock)
  129. $(call create_target,bootblock)
  130. # -------------------------------------------------------------------
  131. # create 'sign' tools
  132. $(call add_files_host,tools/sign.c,sign,sign)
  133. $(call create_target_host,sign,sign)
  134. # -------------------------------------------------------------------
  135. # create ucore.img
  136. UCOREIMG := $(call totarget,ucore.img)
  137. $(UCOREIMG): $(kernel) $(bootblock)
  138. $(V)dd if=/dev/zero of=$@ count=10000
  139. $(V)dd if=$(bootblock) of=$@ conv=notrunc
  140. $(V)dd if=$(kernel) of=$@ seek=1 conv=notrunc
  141. $(call create_target,ucore.img)
  142. # -------------------------------------------------------------------
  143. # create swap.img
  144. SWAPIMG := $(call totarget,swap.img)
  145. $(SWAPIMG):
  146. $(V)dd if=/dev/zero of=$@ bs=1M count=128
  147. $(call create_target,swap.img)
  148. # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  149. $(call finish_all)
  150. IGNORE_ALLDEPS = clean \
  151. dist-clean \
  152. grade \
  153. touch \
  154. print-.+ \
  155. handin
  156. ifeq ($(call match,$(MAKECMDGOALS),$(IGNORE_ALLDEPS)),0)
  157. -include $(ALLDEPS)
  158. endif
  159. # files for grade script
  160. TARGETS: $(TARGETS)
  161. all: $(TARGETS)
  162. .DEFAULT_GOAL := TARGETS
  163. QEMUOPTS = -hda $(UCOREIMG) -drive file=$(SWAPIMG),media=disk,cache=writeback
  164. .PHONY: qemu qemu-nox debug debug-nox
  165. qemu-mon: $(UCOREIMG) $(SWAPIMG)
  166. $(V)$(QEMU) -monitor stdio $(QEMUOPTS) -serial null
  167. qemu: $(UCOREIMG) $(SWAPIMG)
  168. $(V)$(QEMU) -parallel stdio $(QEMUOPTS) -serial null
  169. qemu-nox: $(UCOREIMG) $(SWAPIMG)
  170. $(V)$(QEMU) -serial mon:stdio $(QEMUOPTS) -nographic
  171. TERMINAL := gnome-terminal
  172. gdb: $(UCOREIMG) $(SWAPIMG)
  173. $(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null
  174. debug: $(UCOREIMG) $(SWAPIMG)
  175. $(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null &
  176. $(V)sleep 2
  177. $(V)$(TERMINAL) -e "$(GDB) -q -x tools/gdbinit"
  178. debug-nox: $(UCOREIMG) $(SWAPIMG)
  179. $(V)$(QEMU) -S -s -serial mon:stdio $(QEMUOPTS) -nographic &
  180. $(V)sleep 2
  181. $(V)$(TERMINAL) -e "$(GDB) -q -x tools/gdbinit"
  182. .PHONY: grade touch
  183. GRADE_GDB_IN := .gdb.in
  184. GRADE_QEMU_OUT := .qemu.out
  185. HANDIN := proj$(PROJ)-handin.tar.gz
  186. TOUCH_FILES := kern/trap/trap.c
  187. MAKEOPTS := --quiet --no-print-directory
  188. grade:
  189. $(V)$(MAKE) $(MAKEOPTS) clean
  190. $(V)$(SH) tools/grade.sh
  191. touch:
  192. $(V)$(foreach f,$(TOUCH_FILES),$(TOUCH) $(f))
  193. print-%:
  194. @echo $($(shell echo $(patsubst print-%,%,$@) | $(TR) [a-z] [A-Z]))
  195. .PHONY: clean dist-clean handin packall
  196. clean:
  197. $(V)$(RM) $(GRADE_GDB_IN) $(GRADE_QEMU_OUT)
  198. -$(RM) -r $(OBJDIR) $(BINDIR)
  199. dist-clean: clean
  200. -$(RM) $(HANDIN)
  201. handin: packall
  202. @echo Please visit http://learn.tsinghua.edu.cn and upload $(HANDIN). Thanks!
  203. packall: clean
  204. @$(RM) -f $(HANDIN)
  205. @tar -czf $(HANDIN) `find . -type f -o -type d | grep -v '^\.*$$' | grep -vF '$(HANDIN)'`