view cos/kernel/Makefile @ 407:9eb1fc6aad6c

Minor improvements
author Windel Bouwman
date Fri, 20 Feb 2015 15:47:54 +0100
parents 5c20bd53cccd
children
line wrap: on
line source

# vim: set noexpandtab:

all: lcfos.bin Makefile

CRT0 = goto64.o

CFLAGS = -g -m64 -nostdinc	-nostdlib -nostartfiles -mno-red-zone \
	-fno-builtin -mcmodel=large -Wall -Wextra -Werror

OBJECTS = video.o snprintf.o kernel.o asmcode.o handlers.o keyboard.o \
			klib.o malloc.o task.o mm.o timer.o fs.o initrd.o multiboot.o \
			shell.o

lcfos.bin: $(CRT0) $(OBJECTS) kernel.ld
	ld -g -T kernel.ld -s --cref -Map=kernel.map -o lcfos.bin $(CRT0) $(OBJECTS)

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

%.o : %.c kernel.h
	gcc $(CFLAGS) -o $@ -c $<

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