xref: /xv6-public/Makefile (revision 76d4005f)
1OBJS = \
2	bio.o\
3	console.o\
4	exec.o\
5	file.o\
6	fs.o\
7	ide.o\
8	ioapic.o\
9	kalloc.o\
10	kbd.o\
11	lapic.o\
12	log.o\
13	main.o\
14	mp.o\
15	picirq.o\
16	pipe.o\
17	proc.o\
18	sleeplock.o\
19	spinlock.o\
20	string.o\
21	swtch.o\
22	syscall.o\
23	sysfile.o\
24	sysproc.o\
25	trapasm.o\
26	trap.o\
27	uart.o\
28	vectors.o\
29	vm.o\
30
31# Cross-compiling (e.g., on Mac OS X)
32# TOOLPREFIX = i386-jos-elf
33
34# Using native tools (e.g., on X86 Linux)
35#TOOLPREFIX =
36
37# Try to infer the correct TOOLPREFIX if not set
38ifndef TOOLPREFIX
39TOOLPREFIX := $(shell if i386-jos-elf-objdump -i 2>&1 | grep '^elf32-i386$$' >/dev/null 2>&1; \
40	then echo 'i386-jos-elf-'; \
41	elif objdump -i 2>&1 | grep 'elf32-i386' >/dev/null 2>&1; \
42	then echo ''; \
43	else echo "***" 1>&2; \
44	echo "*** Error: Couldn't find an i386-*-elf version of GCC/binutils." 1>&2; \
45	echo "*** Is the directory with i386-jos-elf-gcc in your PATH?" 1>&2; \
46	echo "*** If your i386-*-elf toolchain is installed with a command" 1>&2; \
47	echo "*** prefix other than 'i386-jos-elf-', set your TOOLPREFIX" 1>&2; \
48	echo "*** environment variable to that prefix and run 'make' again." 1>&2; \
49	echo "*** To turn off this error, run 'gmake TOOLPREFIX= ...'." 1>&2; \
50	echo "***" 1>&2; exit 1; fi)
51endif
52
53# If the makefile can't find QEMU, specify its path here
54# QEMU = qemu-system-i386
55
56# Try to infer the correct QEMU
57ifndef QEMU
58QEMU = $(shell if which qemu > /dev/null; \
59	then echo qemu; exit; \
60	elif which qemu-system-i386 > /dev/null; \
61	then echo qemu-system-i386; exit; \
62	elif which qemu-system-x86_64 > /dev/null; \
63	then echo qemu-system-x86_64; exit; \
64	else \
65	qemu=/Applications/Q.app/Contents/MacOS/i386-softmmu.app/Contents/MacOS/i386-softmmu; \
66	if test -x $$qemu; then echo $$qemu; exit; fi; fi; \
67	echo "***" 1>&2; \
68	echo "*** Error: Couldn't find a working QEMU executable." 1>&2; \
69	echo "*** Is the directory containing the qemu binary in your PATH" 1>&2; \
70	echo "*** or have you tried setting the QEMU variable in Makefile?" 1>&2; \
71	echo "***" 1>&2; exit 1)
72endif
73
74CC = $(TOOLPREFIX)gcc
75AS = $(TOOLPREFIX)gas
76LD = $(TOOLPREFIX)ld
77OBJCOPY = $(TOOLPREFIX)objcopy
78OBJDUMP = $(TOOLPREFIX)objdump
79CFLAGS = -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer
80CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector)
81ASFLAGS = -m32 -gdwarf-2 -Wa,-divide
82# FreeBSD ld wants ``elf_i386_fbsd''
83LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)
84
85# Disable PIE when possible (for Ubuntu 16.10 toolchain)
86ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]no-pie'),)
87CFLAGS += -fno-pie -no-pie
88endif
89ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]nopie'),)
90CFLAGS += -fno-pie -nopie
91endif
92
93xv6.img: bootblock kernel
94	dd if=/dev/zero of=xv6.img count=10000
95	dd if=bootblock of=xv6.img conv=notrunc
96	dd if=kernel of=xv6.img seek=1 conv=notrunc
97
98xv6memfs.img: bootblock kernelmemfs
99	dd if=/dev/zero of=xv6memfs.img count=10000
100	dd if=bootblock of=xv6memfs.img conv=notrunc
101	dd if=kernelmemfs of=xv6memfs.img seek=1 conv=notrunc
102
103bootblock: bootasm.S bootmain.c
104	$(CC) $(CFLAGS) -fno-pic -O -nostdinc -I. -c bootmain.c
105	$(CC) $(CFLAGS) -fno-pic -nostdinc -I. -c bootasm.S
106	$(LD) $(LDFLAGS) -N -e start -Ttext 0x7C00 -o bootblock.o bootasm.o bootmain.o
107	$(OBJDUMP) -S bootblock.o > bootblock.asm
108	$(OBJCOPY) -S -O binary -j .text bootblock.o bootblock
109	./sign.pl bootblock
110
111entryother: entryother.S
112	$(CC) $(CFLAGS) -fno-pic -nostdinc -I. -c entryother.S
113	$(LD) $(LDFLAGS) -N -e start -Ttext 0x7000 -o bootblockother.o entryother.o
114	$(OBJCOPY) -S -O binary -j .text bootblockother.o entryother
115	$(OBJDUMP) -S bootblockother.o > entryother.asm
116
117initcode: initcode.S
118	$(CC) $(CFLAGS) -nostdinc -I. -c initcode.S
119	$(LD) $(LDFLAGS) -N -e start -Ttext 0 -o initcode.out initcode.o
120	$(OBJCOPY) -S -O binary initcode.out initcode
121	$(OBJDUMP) -S initcode.o > initcode.asm
122
123kernel: $(OBJS) entry.o entryother initcode kernel.ld
124	$(LD) $(LDFLAGS) -T kernel.ld -o kernel entry.o $(OBJS) -b binary initcode entryother
125	$(OBJDUMP) -S kernel > kernel.asm
126	$(OBJDUMP) -t kernel | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > kernel.sym
127
128# kernelmemfs is a copy of kernel that maintains the
129# disk image in memory instead of writing to a disk.
130# This is not so useful for testing persistent storage or
131# exploring disk buffering implementations, but it is
132# great for testing the kernel on real hardware without
133# needing a scratch disk.
134MEMFSOBJS = $(filter-out ide.o,$(OBJS)) memide.o
135kernelmemfs: $(MEMFSOBJS) entry.o entryother initcode kernel.ld fs.img
136	$(LD) $(LDFLAGS) -T kernel.ld -o kernelmemfs entry.o  $(MEMFSOBJS) -b binary initcode entryother fs.img
137	$(OBJDUMP) -S kernelmemfs > kernelmemfs.asm
138	$(OBJDUMP) -t kernelmemfs | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > kernelmemfs.sym
139
140tags: $(OBJS) entryother.S _init
141	etags *.S *.c
142
143vectors.S: vectors.pl
144	./vectors.pl > vectors.S
145
146ULIB = ulib.o usys.o printf.o umalloc.o
147
148_%: %.o $(ULIB)
149	$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o $@ $^
150	$(OBJDUMP) -S $@ > $*.asm
151	$(OBJDUMP) -t $@ | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $*.sym
152
153_forktest: forktest.o $(ULIB)
154	# forktest has less library code linked in - needs to be small
155	# in order to be able to max out the proc table.
156	$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _forktest forktest.o ulib.o usys.o
157	$(OBJDUMP) -S _forktest > forktest.asm
158
159mkfs: mkfs.c fs.h
160	gcc -Werror -Wall -o mkfs mkfs.c
161
162# Prevent deletion of intermediate files, e.g. cat.o, after first build, so
163# that disk image changes after first build are persistent until clean.  More
164# details:
165# http://www.gnu.org/software/make/manual/html_node/Chained-Rules.html
166.PRECIOUS: %.o
167
168UPROGS=\
169	_cat\
170	_echo\
171	_forktest\
172	_grep\
173	_init\
174	_kill\
175	_ln\
176	_ls\
177	_mkdir\
178	_rm\
179	_sh\
180	_stressfs\
181	_usertests\
182	_wc\
183	_zombie\
184
185fs.img: mkfs README $(UPROGS)
186	./mkfs fs.img README $(UPROGS)
187
188-include *.d
189
190clean:
191	rm -f *.tex *.dvi *.idx *.aux *.log *.ind *.ilg \
192	*.o *.d *.asm *.sym vectors.S bootblock entryother \
193	initcode initcode.out kernel xv6.img fs.img kernelmemfs \
194	xv6memfs.img mkfs .gdbinit \
195	$(UPROGS)
196
197# make a printout
198FILES = $(shell grep -v '^\#' runoff.list)
199PRINT = runoff.list runoff.spec README toc.hdr toc.ftr $(FILES)
200
201xv6.pdf: $(PRINT)
202	./runoff
203	ls -l xv6.pdf
204
205print: xv6.pdf
206
207# run in emulators
208
209bochs : fs.img xv6.img
210	if [ ! -e .bochsrc ]; then ln -s dot-bochsrc .bochsrc; fi
211	bochs -q
212
213# try to generate a unique GDB port
214GDBPORT = $(shell expr `id -u` % 5000 + 25000)
215# QEMU's gdb stub command line changed in 0.11
216QEMUGDB = $(shell if $(QEMU) -help | grep -q '^-gdb'; \
217	then echo "-gdb tcp::$(GDBPORT)"; \
218	else echo "-s -p $(GDBPORT)"; fi)
219ifndef CPUS
220CPUS := 2
221endif
222QEMUOPTS = -drive file=fs.img,index=1,media=disk,format=raw -drive file=xv6.img,index=0,media=disk,format=raw -smp $(CPUS) -m 512 $(QEMUEXTRA)
223
224qemu: fs.img xv6.img
225	$(QEMU) -serial mon:stdio $(QEMUOPTS)
226
227qemu-memfs: xv6memfs.img
228	$(QEMU) -drive file=xv6memfs.img,index=0,media=disk,format=raw -smp $(CPUS) -m 256
229
230qemu-nox: fs.img xv6.img
231	$(QEMU) -nographic $(QEMUOPTS)
232
233.gdbinit: .gdbinit.tmpl
234	sed "s/localhost:1234/localhost:$(GDBPORT)/" < $^ > $@
235
236qemu-gdb: fs.img xv6.img .gdbinit
237	@echo "*** Now run 'gdb'." 1>&2
238	$(QEMU) -serial mon:stdio $(QEMUOPTS) -S $(QEMUGDB)
239
240qemu-nox-gdb: fs.img xv6.img .gdbinit
241	@echo "*** Now run 'gdb'." 1>&2
242	$(QEMU) -nographic $(QEMUOPTS) -S $(QEMUGDB)
243
244# CUT HERE
245# prepare dist for students
246# after running make dist, probably want to
247# rename it to rev0 or rev1 or so on and then
248# check in that version.
249
250EXTRA=\
251	mkfs.c ulib.c user.h cat.c echo.c forktest.c grep.c kill.c\
252	ln.c ls.c mkdir.c rm.c stressfs.c usertests.c wc.c zombie.c\
253	printf.c umalloc.c\
254	README dot-bochsrc *.pl toc.* runoff runoff1 runoff.list\
255	.gdbinit.tmpl gdbutil\
256
257dist:
258	rm -rf dist
259	mkdir dist
260	for i in $(FILES); \
261	do \
262		grep -v PAGEBREAK $$i >dist/$$i; \
263	done
264	sed '/CUT HERE/,$$d' Makefile >dist/Makefile
265	echo >dist/runoff.spec
266	cp $(EXTRA) dist
267
268dist-test:
269	rm -rf dist
270	make dist
271	rm -rf dist-test
272	mkdir dist-test
273	cp dist/* dist-test
274	cd dist-test; $(MAKE) print
275	cd dist-test; $(MAKE) bochs || true
276	cd dist-test; $(MAKE) qemu
277
278# update this rule (change rev#) when it is time to
279# make a new revision.
280tar:
281	rm -rf /tmp/xv6
282	mkdir -p /tmp/xv6
283	cp dist/* dist/.gdbinit.tmpl /tmp/xv6
284	(cd /tmp; tar cf - xv6) | gzip >xv6-rev10.tar.gz  # the next one will be 10 (9/17)
285
286.PHONY: dist-test dist
287