X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.build;h=8a7348590772227fc466643b433e39796b2106b7;hb=b0a700d18f0a0a8c87e1a4fff3a2108e0edb0fbc;hp=017267f688b14a356d5c8556ecae12956efd29c6;hpb=993c1d9f4452e2edd851f3175dfdf317f18bdb9f;p=pintos-anon diff --git a/src/Makefile.build b/src/Makefile.build index 017267f..8a73485 100644 --- a/src/Makefile.build +++ b/src/Makefile.build @@ -4,15 +4,34 @@ include ../Makefile.vars SHELL = /bin/sh +# Binary utilities. +# If the host appears to be x86, use the normal tools. +# Otherwise assume cross-tools are installed as i386-elf-*. +X86 = i.86\|pentium.*\|[pk][56]\|nexgen\|viac3\|6x86\|athlon.* +ifneq (0, $(shell expr `uname -m` : '$(X86)')) CC = gcc +LD = ld +OBJCOPY = objcopy +else +CC = i386-elf-gcc +LD = i386-elf-ld +OBJCOPY = i386-elf-objcopy +endif + +# Other utilities. +DD = dd +RM = rm +CAT = cat VPATH = ../.. +# Compiler and assembler options. DEFINES += -DKERNEL WARNINGS = -Wall -W -Wstrict-prototypes -Wmissing-prototypes -INCLUDES = -nostdinc -I../.. -I- -I../../lib -I../../lib/kernel -CFLAGS = -g -O3 -MMD -msoft-float $(INCLUDES) $(WARNINGS) $(DEFINES) -ASFLAGS = -Wa,--gstabs -MMD $(INCLUDES) $(DEFINES) +CPPFLAGS = -nostdinc -I../.. -I- -I../../lib -I../../lib/kernel \ + -include constants.h +CFLAGS = -g -O3 -MMD -msoft-float +ASFLAGS = -Wa,--gstabs -MMD # Core kernel. threads_SRC = threads/init.c # Main program. @@ -21,7 +40,6 @@ threads_SRC += threads/switch.S # Thread switch routine. threads_SRC += threads/interrupt.c # Interrupt core. threads_SRC += threads/intr-stubs.S # Interrupt stubs. threads_SRC += threads/synch.c # Synchronization. -threads_SRC += threads/paging.c # Page tables. threads_SRC += threads/palloc.c # Page allocator. threads_SRC += threads/malloc.c # Subpage allocator. threads_SRC += threads/start.S # Startup code. @@ -57,6 +75,7 @@ filesys_SRC += filesys/fsutil.c # Utilities. # User process code. userprog_SRC = userprog/addrspace.c # Address spaces. +userprog_SRC += userprog/pagedir.c # Page directories. userprog_SRC += userprog/exception.c # User exception handler. userprog_SRC += userprog/syscall.c # System call handler. userprog_SRC += userprog/gdt.c # GDT initialization. @@ -75,26 +94,35 @@ threads/kernel.lds.s: CPPFLAGS += -P -C threads/kernel.lds.s: threads/kernel.lds.S threads/loader.h kernel.o: threads/kernel.lds.s $(OBJECTS) - ld -T $< -o $@ $(OBJECTS) `$(CC) -print-libgcc-file-name` + $(LD) -T $< -o $@ $(OBJECTS) `$(CC) -print-libgcc-file-name` kernel.bin: kernel.o - objcopy -O binary -R .note -R .comment -S $< $@.tmp - ../../pad 4096 < $@.tmp > $@ - rm $@.tmp + $(OBJCOPY) -O binary -R .note -R .comment -S $< $@.tmp + $(DD) if=$@.tmp of=$@ bs=4096 conv=sync + $(RM) $@.tmp threads/loader.o: threads/loader.S kernel.bin - $(CC) -c $< -o $@ $(ASFLAGS) -DKERNEL_LOAD_PAGES=`perl -e 'print +(-s "kernel.bin") / 4096;'` + $(CC) -c $< -o $@ $(ASFLAGS) $(CPPFLAGS) $(DEFINES) -DKERNEL_LOAD_PAGES=`perl -e 'print +(-s "kernel.bin") / 4096;'` loader.bin: threads/loader.o - ld -N -e start -Ttext 0x7c00 --oformat binary -o $@ $< + $(LD) -N -e start -Ttext 0x7c00 --oformat binary -o $@ $< os.dsk: loader.bin kernel.bin - cat $^ > $@ + $(CAT) $^ > $@ clean: - rm -f $(OBJECTS) $(DEPENDS) - rm -f threads/intr-stubs.S threads/loader.o - rm -f kernel.o kernel.lds.s - rm -f kernel.bin loader.bin + $(RM) -f $(OBJECTS) $(DEPENDS) + $(RM) -f threads/intr-stubs.S threads/loader.o + $(RM) -f kernel.o kernel.lds.s + $(RM) -f kernel.bin loader.bin + +Makefile: ../../Makefile.build + cp $< $@ + +%.o: %.c + $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) $(WARNINGS) $(DEFINES) + +%.o: %.S + $(CC) -c $< -o $@ $(ASFLAGS) $(CPPFLAGS) $(DEFINES) -include $(DEPENDS)