Fix makefile for multiple examples
Change-Id: I5ba7eefea0beff8da224567a6073b298f10153bb
This commit is contained in:
parent
3c933c442b
commit
8672ca43d6
6
Makefile
6
Makefile
@ -24,7 +24,7 @@ GO_FLAGS := -ldflags=$(LD_FLAGS)
|
||||
BUILD_DIR := bin
|
||||
|
||||
# Find all main.go files under cmd, excluding airshipui itself (which is the octant wrapper)
|
||||
EXAMPLE_NAMES := $(shell basename $(subst /main.go,,$(shell find examples -name "main.go")))
|
||||
EXAMPLE_NAMES := $(notdir $(subst /main.go,,$(wildcard examples/*/main.go)))
|
||||
EXAMPLES := $(addprefix $(BUILD_DIR)/, $(EXAMPLE_NAMES))
|
||||
MAIN := $(BUILD_DIR)/airshipui
|
||||
EXTENSION :=
|
||||
@ -55,9 +55,9 @@ $(EXAMPLES): FORCE
|
||||
FORCE:
|
||||
|
||||
.PHONY: install-octant-plugins
|
||||
install-octant-plugins: $(EXAMPLES)
|
||||
install-octant-plugins:
|
||||
@mkdir -p $(OCTANT_PLUGINSTUB_DIR)
|
||||
cp $(addsuffix $(EXTENSION), $^) $(OCTANT_PLUGINSTUB_DIR)
|
||||
cp $(addsuffix $(EXTENSION), $(BUILD_DIR)/octant) $(OCTANT_PLUGINSTUB_DIR)
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
|
Loading…
x
Reference in New Issue
Block a user