9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a659629b7a926f984853e5a7b4d268cbb92294a9
parent 41f18fe7658b8531fb90aff953130edb13cd52d6
Author: Roberto Vargas <roberto.vargas@arm.com>
Date:   Thu,  8 Nov 2018 11:53:57 +0000

[libk] Add Makefile

Change-Id: Ie6f1d0695de59178d7907d31bb47ba60d528ff3b

Diffstat:
Asrc/libk/Makefile | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/libk/Makefile b/src/libk/Makefile @@ -0,0 +1,13 @@ +.POSIX: +PROJECTDIR=../.. +include $(PROJECTDIR)/scripts/rules.mk + +OBJS = printk.o \ + +TARGET = $(LIBDIR)/libk.a + +all: $(TARGET) + +$(TARGET): $(OBJS) + $(AR) $(ARFLAGS) $@ $? + ranlib $@