Skip to content
Merged
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
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: all build image

all: image

build:
$(MAKE) -C calico-vpp-agent $@
$(MAKE) -C vpp-manager $@

image:
$(MAKE) -C calico-vpp-agent $@
$(MAKE) -C vpp-manager $@
4 changes: 2 additions & 2 deletions vpp-manager/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all build image
.PHONY: all build image imageonly vpp

VPPLINK_DIR=$(shell go list -f '{{.Dir}}' -m github.com/calico-vpp/vpplink)
VPPLINK_DIR="../vpplink"
IMAGE_DIR=images/ubuntu/

all: image
Expand Down