《操作系统》的实验代码。
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.

263 lines
6.6 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. PROJ := 5
  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. TAR := tar
  60. ZIP := gzip
  61. OBJDIR := obj
  62. BINDIR := bin
  63. ALLOBJS :=
  64. ALLDEPS :=
  65. TARGETS :=
  66. include tools/function.mk
  67. listf_cc = $(call listf,$(1),$(CTYPE))
  68. # for cc
  69. add_files_cc = $(call add_files,$(1),$(CC),$(CFLAGS) $(3),$(2),$(4))
  70. create_target_cc = $(call create_target,$(1),$(2),$(3),$(CC),$(CFLAGS))
  71. # for hostcc
  72. add_files_host = $(call add_files,$(1),$(HOSTCC),$(HOSTCFLAGS),$(2),$(3))
  73. create_target_host = $(call create_target,$(1),$(2),$(3),$(HOSTCC),$(HOSTCFLAGS))
  74. cgtype = $(patsubst %.$(2),%.$(3),$(1))
  75. objfile = $(call toobj,$(1))
  76. asmfile = $(call cgtype,$(call toobj,$(1)),o,asm)
  77. outfile = $(call cgtype,$(call toobj,$(1)),o,out)
  78. symfile = $(call cgtype,$(call toobj,$(1)),o,sym)
  79. # for match pattern
  80. match = $(shell echo $(2) | $(AWK) '{for(i=1;i<=NF;i++){if(match("$(1)","^"$$(i)"$$")){exit 1;}}}'; echo $$?)
  81. # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  82. # include kernel/user
  83. INCLUDE += libs/
  84. CFLAGS += $(addprefix -I,$(INCLUDE))
  85. LIBDIR += libs
  86. $(call add_files_cc,$(call listf_cc,$(LIBDIR)),libs,)
  87. # -------------------------------------------------------------------
  88. # kernel
  89. KINCLUDE += kern/debug/ \
  90. kern/driver/ \
  91. kern/trap/ \
  92. kern/mm/ \
  93. kern/libs/ \
  94. kern/sync/
  95. KSRCDIR += kern/init \
  96. kern/libs \
  97. kern/debug \
  98. kern/driver \
  99. kern/trap \
  100. kern/mm \
  101. kern/sync
  102. KCFLAGS += $(addprefix -I,$(KINCLUDE))
  103. $(call add_files_cc,$(call listf_cc,$(KSRCDIR)),kernel,$(KCFLAGS))
  104. KOBJS = $(call read_packet,kernel libs)
  105. # create kernel target
  106. kernel = $(call totarget,kernel)
  107. $(kernel): tools/kernel.ld
  108. $(kernel): $(KOBJS)
  109. @echo + ld $@
  110. $(V)$(LD) $(LDFLAGS) -T tools/kernel.ld -o $@ $(KOBJS)
  111. @$(OBJDUMP) -S $@ > $(call asmfile,kernel)
  112. @$(OBJDUMP) -t $@ | $(SED) '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $(call symfile,kernel)
  113. $(call create_target,kernel)
  114. # -------------------------------------------------------------------
  115. # create bootblock
  116. bootfiles = $(call listf_cc,boot)
  117. $(foreach f,$(bootfiles),$(call cc_compile,$(f),$(CC),$(CFLAGS) -Os -nostdinc))
  118. bootblock = $(call totarget,bootblock)
  119. $(bootblock): $(call toobj,boot/bootasm.S) $(call toobj,$(bootfiles)) | $(call totarget,sign)
  120. @echo + ld $@
  121. $(V)$(LD) $(LDFLAGS) -N -T tools/boot.ld $^ -o $(call toobj,bootblock)
  122. @$(OBJDUMP) -S $(call objfile,bootblock) > $(call asmfile,bootblock)
  123. @$(OBJCOPY) -S -O binary $(call objfile,bootblock) $(call outfile,bootblock)
  124. @$(call totarget,sign) $(call outfile,bootblock) $(bootblock)
  125. $(call create_target,bootblock)
  126. # -------------------------------------------------------------------
  127. # create 'sign' tools
  128. $(call add_files_host,tools/sign.c,sign,sign)
  129. $(call create_target_host,sign,sign)
  130. # -------------------------------------------------------------------
  131. # create ucore.img
  132. UCOREIMG := $(call totarget,ucore.img)
  133. $(UCOREIMG): $(kernel) $(bootblock)
  134. $(V)dd if=/dev/zero of=$@ count=10000
  135. $(V)dd if=$(bootblock) of=$@ conv=notrunc
  136. $(V)dd if=$(kernel) of=$@ seek=1 conv=notrunc
  137. $(call create_target,ucore.img)
  138. # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  139. $(call finish_all)
  140. IGNORE_ALLDEPS = gdb \
  141. clean \
  142. distclean \
  143. grade \
  144. touch \
  145. print-.+ \
  146. handin
  147. ifeq ($(call match,$(MAKECMDGOALS),$(IGNORE_ALLDEPS)),0)
  148. -include $(ALLDEPS)
  149. endif
  150. # files for grade script
  151. targets: $(TARGETS)
  152. .DEFAULT_GOAL := targets
  153. QEMUOPTS = -hda $(UCOREIMG)
  154. .PHONY: qemu qemu-nox gdb debug debug-mon debug-nox
  155. qemu-mon: targets
  156. $(V)$(QEMU) -no-reboot -monitor stdio $(QEMUOPTS) -serial null
  157. qemu: targets
  158. $(V)$(QEMU) -no-reboot -parallel stdio $(QEMUOPTS) -serial null
  159. qemu-nox: targets
  160. $(V)$(QEMU) -no-reboot -serial mon:stdio $(QEMUOPTS) -nographic
  161. gdb:
  162. $(V)$(GDB) -q -x tools/gdbinit
  163. debug: targets
  164. $(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null
  165. debug-mon: targets
  166. $(V)$(QEMU) -S -s -monitor stdio $(QEMUOPTS) -parallel null -serial null
  167. debug-nox: targets
  168. $(V)$(QEMU) -S -s -serial mon:stdio $(QEMUOPTS) -nographic
  169. .PHONY: grade touch
  170. GRADE_GDB_IN := .gdb.in
  171. GRADE_QEMU_OUT := .qemu.out
  172. HANDIN := lab2-handin.tar.gz
  173. TOUCH_FILES := kern/trap/trap.c
  174. MAKEOPTS := --quiet --no-print-directory
  175. grade:
  176. $(V)$(MAKE) $(MAKEOPTS) clean
  177. $(V)$(SH) tools/grade.sh
  178. touch:
  179. $(V)$(foreach f,$(TOUCH_FILES),$(TOUCH) $(f))
  180. print-%:
  181. @echo $($(shell echo $(patsubst print-%,%,$@) | $(TR) [a-z] [A-Z]))
  182. .PHONY: clean distclean handin
  183. clean:
  184. $(V)$(RM) $(GRADE_GDB_IN) $(GRADE_QEMU_OUT)
  185. $(V)$(RM) -r $(OBJDIR) $(BINDIR)
  186. distclean: clean
  187. $(V)$(RM) $(HANDIN)
  188. handin: distclean
  189. $(V)$(TAR) -cf - `find . -type f -o -type d | grep -v '^\.$$' | grep -v '/CVS/' \
  190. | grep -v '/\.git/' | grep -v '/\.svn/' | grep -v "$(HANDIN)"` \
  191. | $(ZIP) > $(HANDIN)