summaryrefslogtreecommitdiffstats
path: root/src/kernel/makefile
blob: 1047de4564520f6ce390e007ec3e4e24be33e20d (plain)
1
2
3
4
5
6
7
8
9
10
OBJDIR = ../../obj
include ../../config.mk

OBJS = start.o kernel.o console.o
OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS})

all: ${OBJECTS}

clean:
	(rm -f ${OBJECTS} )
OpenPOWER on IntegriCloud