Skip to content

Commit

Permalink
Add Makefile for building the full example
Browse files Browse the repository at this point in the history
  • Loading branch information
stano45 committed Sep 5, 2024
1 parent beaf328 commit d79c4b8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/container_migration_in_kubernetes/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
include ../../utils/Makefile

all: clean load_balancer bmv2-cni build

load_balancer:
make -C ../../load_balancer && cp -r ../../load_balancer/build/* config

build:
./build.sh

clean:
./clean.sh

bmv2-cni:
make -C ../../bmv2-cni

.PHONY: all clean load_balancer bmv2-cni build

0 comments on commit d79c4b8

Please sign in to comment.