summaryrefslogtreecommitdiffstats
path: root/src/lib/makefile
blob: a2deef3a7a10026f93fa0555589cdede6d5d69f8 (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} $(addsuffix .hash, ${OBJECTS}))

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