kernel: make sure mpx.S is linked early

. for qemu multiboot detection
This commit is contained in:
Ben Gras
2012-06-01 16:58:00 +02:00
parent 8c434cf24f
commit 910a0e1093
2 changed files with 5 additions and 4 deletions

View File

@@ -3,7 +3,9 @@
PROG= kernel
SRCS= clock.c cpulocals.c interrupt.c main.c proc.c start.c system.c \
.include "arch/${ARCH}/Makefile.inc"
SRCS+= clock.c cpulocals.c interrupt.c main.c proc.c start.c system.c \
table.c utility.c
DPADD+= ${LIBTIMERS} ${LIBSYS} ${LIBEXEC}
@@ -29,7 +31,6 @@ BINDIR= /usr/sbin
MAN=
.include "system/Makefile.inc"
.include "arch/${ARCH}/Makefile.inc"
.ifdef CONFIG_SMP
SRCS+= smp.c