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

OBJS = string.o stdlib.o 
OBJS += syscall_stub.o syscall_task.o syscall_mutex.o syscall_msg.o
OBJS += syscall_mmio.o syscall_time.o
OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS})

all: ${OBJECTS}

clean:
	(rm -f ${OBJECTS} )

include ${ROOTPATH}/config.mk
OpenPOWER on IntegriCloud