view cos/Makefile @ 20:b1fed2171e1a

Now working with 2 MB pages
author windel
date Mon, 28 Nov 2011 20:54:40 +0100
parents 6129643f5c34
children 69bc6d477b38
line wrap: on
line source

# vim: set noexpandtab:

all: bootdisk.img Makefile

bootdisk.img: lcfosc.bin grub/menu.lst Makefile
	cp grub/emptybootdisk.img bootdisk.img
	mcopy -D o -i bootdisk.img lcfosc.bin ::
	mcopy -D o -i bootdisk.img grub/menu.lst ::/grub

CRT0 = kernel/goto64.o

CFLAGS = -m64 \
			-nostdinc \
			-nostdlib \
			-nostartfiles \
			-mno-red-zone \
			-fno-builtin \
			-mcmodel=large \
			-Iinclude

OBJECTS = \
	kernel/video.o \
	kernel/snprintf.o \
	kernel/kernel.o \
	kernel/asmcode.o \
	kernel/handlers.o


lcfosc.bin: $(CRT0) $(OBJECTS) linker.ld
	ld -T linker.ld -o lcfosc.bin $(CRT0) $(OBJECTS)

%.o : %.asm Makefile
	nasm -f elf64 -o $@ $<

%.o : %.c Makefile
	gcc $(CFLAGS) -o $@ -c $< -Wall -Wextra -Werror

clean:
	rm $(OBJECTS) $(CRT0) lcfosc.bin