https://github.com/cilium/cilium
Raw File
Tip revision: 38a303b7bd9014a2aa6da1702e814c9cecf9d47c authored by John Fastabend on 02 December 2018, 06:13:18 UTC
cilium: add ktls support
Tip revision: 38a303b
Makefile
# GOBUILD relies on the order of makefile list to get VERSION file
include ../Makefile.defs

TARGET=cilium-operator
SOURCES := $(shell find ../pkg . \( -name '*.go'  ! -name '*_test.go' \))
$(TARGET): $(SOURCES)
	@$(ECHO_GO)
	$(QUIET)$(GO) build $(GOBUILD) -o $(TARGET)

all: $(TARGET)

clean:
	@$(ECHO_CLEAN) $(notdir $(shell pwd))
	$(QUIET)rm -f $(TARGET)
	$(GO) clean

install:
back to top