summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-31 11:49:07 +0200
committerMiguel <m.i@gmx.at>2018-08-31 11:49:07 +0200
commit47d7e8e4527c663dd1a0c04a4ea5624589464895 (patch)
treed6d5ef82f1089a9ab058b27c427c1463db0fae60 /Makefile.common
parent4404fa9b3d98646f942e32146722a9d0a68edc13 (diff)
various improvmenets
* added debugging symbols to nasm output * started implementing an unified interrupt interface * moved smp entry point to kernel image!
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common6
1 files changed, 1 insertions, 5 deletions
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 $@