From 47d7e8e4527c663dd1a0c04a4ea5624589464895 Mon Sep 17 00:00:00 2001 From: Miguel Date: Fri, 31 Aug 2018 11:49:07 +0200 Subject: various improvmenets * added debugging symbols to nasm output * started implementing an unified interrupt interface * moved smp entry point to kernel image! --- Makefile.common | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Makefile.common') diff --git a/Makefile.common b/Makefile.common index 89b90e8..2dd538c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,11 +1,7 @@ ### explicit rules ### %.o: %.asm - @echo "Assembling (nasm) $@..."; nasm -f elf $*.asm -o $@ - -%.bin: %.asm - @echo "Assembling (nasm) $@..."; nasm -f bin $*.asm -o $@ - + @echo "Assembling (nasm) $@..."; nasm -f elf $*.asm -o $@ -f elf -F dwarf -g #%.o: %.s # i686-elf-as $*.s -o $@ -- cgit v1.2.3