xv6-cs450/Makefile

65 lines
1.9 KiB
Makefile
Raw Normal View History

2006-06-15 18:02:20 +02:00
OBJS = main.o console.o string.o kalloc.o proc.o trapasm.o trap.o vectors.o \
2006-07-12 19:00:54 +02:00
syscall.o ide.o picirq.o mp.o lapic.o spinlock.o fd.o pipe.o swtch.o
2006-06-12 17:22:12 +02:00
2006-07-11 03:07:40 +02:00
# Cross-compiling (e.g., on Mac OS X)
TOOLPREFIX = i386-jos-elf-
# Using native tools (e.g., on X86 Linux)
# TOOLPREFIX =
CC = $(TOOLPREFIX)gcc
LD = $(TOOLPREFIX)ld
OBJCOPY = $(TOOLPREFIX)objcopy
OBJDUMP = $(TOOLPREFIX)objdump
CFLAGS = -nostdinc -I. -O2 -Wall -MD
2006-07-11 03:07:40 +02:00
AS = $(TOOLPREFIX)gas
2006-06-12 17:22:12 +02:00
xv6.img : bootblock kernel
dd if=/dev/zero of=xv6.img count=10000
dd if=bootblock of=xv6.img conv=notrunc
dd if=kernel of=xv6.img seek=1 conv=notrunc
bootblock : bootasm.S bootmain.c
$(CC) -O -nostdinc -I. -c bootmain.c
$(CC) -nostdinc -I. -c bootasm.S
$(LD) -N -e start -Ttext 0x7C00 -o bootblock.o bootasm.o bootmain.o
$(OBJDUMP) -S bootblock.o > bootblock.asm
$(OBJCOPY) -S -O binary bootblock.o bootblock
./sign.pl bootblock
kernel : $(OBJS) bootother.S user1 usertests userfs
$(CC) -nostdinc -I. -c bootother.S
$(LD) -N -e start -Ttext 0x7000 -o bootother.out bootother.o
$(OBJCOPY) -S -O binary bootother.out bootother
$(OBJDUMP) -S bootother.o > bootother.asm
$(LD) -Ttext 0x100000 -e main -o kernel $(OBJS) -b binary bootother user1 usertests userfs
2006-06-12 17:22:12 +02:00
$(OBJDUMP) -S kernel > kernel.asm
2006-06-13 17:50:06 +02:00
vectors.S : vectors.pl
perl vectors.pl > vectors.S
2006-07-11 03:07:40 +02:00
ULIB = ulib.o usys.o
user1 : user1.c $(ULIB)
2006-06-22 22:47:23 +02:00
$(CC) -nostdinc -I. -c user1.c
2006-07-11 03:07:40 +02:00
$(LD) -N -e main -Ttext 0 -o user1 user1.o $(ULIB)
2006-06-26 17:11:19 +02:00
$(OBJDUMP) -S user1 > user1.asm
2006-06-22 22:47:23 +02:00
2006-07-11 03:07:40 +02:00
usertests : usertests.c $(ULIB)
2006-06-27 16:35:53 +02:00
$(CC) -nostdinc -I. -c usertests.c
2006-07-11 03:07:40 +02:00
$(LD) -N -e main -Ttext 0 -o usertests usertests.o $(ULIB)
2006-06-27 16:35:53 +02:00
$(OBJDUMP) -S usertests > usertests.asm
2006-07-11 03:07:40 +02:00
userfs : userfs.c $(ULIB)
$(CC) -nostdinc -I. -c userfs.c
2006-07-11 03:07:40 +02:00
$(LD) -N -e main -Ttext 0 -o userfs userfs.o $(ULIB)
$(OBJDUMP) -S userfs > userfs.asm
2006-06-27 16:35:53 +02:00
ulib.o : ulib.c
$(CC) -nostdinc -I. -c ulib.c
2006-06-15 21:58:01 +02:00
-include *.d
2006-06-12 17:22:12 +02:00
clean :
2006-06-22 22:47:23 +02:00
rm -f *.o bootblock kernel kernel.asm xv6.img *.d user1