Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Makefile.container
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions lbv2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
procstat:
procstat:
build:
- make -f Makefile.container all
install:
- make -f Makefile.container install
deps:
- file://src