diff --git a/Makefile.container b/Makefile.container new file mode 100644 index 0000000..0a070c1 --- /dev/null +++ b/Makefile.container @@ -0,0 +1,19 @@ +include $(WORKSPACE_TOP)/common/Makefile.env + +all: build + +LBGO_CONTAINER_VERSION = $(shell component-tool version --repo=lb_containers --type=$(BUILD_TYPE) lbcpp) + +build: + run_in_container -i lbcpp:${LBGO_CONTAINER_VERSION} -- ${MAKE} -f Makefile.lb $@ + +install: + run_in_container -i lbcpp:latest -- ${MAKE} -f Makefile.lb $@ + +checkin: + run_in_container -i lbcpp:latest -- ${MAKE} -f Makefile.lb $@ + +clean: + run_in_container -i lbcpp:latest -- ${MAKE} -f Makefile.lb $@ + +.PHONY: clean checkin build diff --git a/lbv2.yaml b/lbv2.yaml new file mode 100644 index 0000000..cbb80e7 --- /dev/null +++ b/lbv2.yaml @@ -0,0 +1,8 @@ +procstat: + procstat: + build: + - make -f Makefile.container all + install: + - make -f Makefile.container install + deps: + - file://src