summaryrefslogtreecommitdiffstats
path: root/src/kernel/makefile
blob: 807fdd8941b40a29d1e5dbd1536a782536c1d702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ROOTPATH = ../..
OBJDIR = ${ROOTPATH}/obj/hbicore

OBJS = start.o kernel.o console.o pagemgr.o heapmgr.o taskmgr.o cpumgr.o
OBJS += syscall.o scheduler.o spinlock.o exception.o vmmmgr.o timemgr.o
OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS})

all: ${OBJECTS}

clean:
	(rm -f ${OBJECTS} $(addsuffix .hash, ${OBJECTS}) )

include ${ROOTPATH}/config.mk

OpenPOWER on IntegriCloud