summaryrefslogtreecommitdiff
path: root/boot2
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-14 11:08:15 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-14 11:08:15 +0100
commitdbf8051b468e240370e3bde630a4e6fa88a031de (patch)
treef4c5d3ef5d79d8eac27affed07e4a9215610590c /boot2
parente3cc5f6c89ba9f37bf2c1edf588d0f75c1d63c57 (diff)
adapt buildsys
Diffstat (limited to 'boot2')
-rw-r--r--boot2/Makefile4
-rw-r--r--boot2/mp.asm2
2 files changed, 4 insertions, 2 deletions
diff --git a/boot2/Makefile b/boot2/Makefile
index 17dc454..f1de230 100644
--- a/boot2/Makefile
+++ b/boot2/Makefile
@@ -3,13 +3,15 @@
include ../Makefile.common
STAGE2=stage2.bin
+MP=mp.bin
ASM_SOURCES=$(wildcard *.asm)
$(STAGE2): $(ASM_SOURCES)
+$(MP): $(ASM_SOURCES)
clean:
- -rm $(STAGE2)
+ -rm $(STAGE2) $(MP)
diff --git a/boot2/mp.asm b/boot2/mp.asm
index 072aa74..b6efd04 100644
--- a/boot2/mp.asm
+++ b/boot2/mp.asm
@@ -34,4 +34,4 @@ boot_32_pm:
;
call 0x18000 ;jump into our Kernel!
-%include "boot/GDT.asm"
+%include "GDT.asm"