mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-01 13:34:20 +01:00
to the kata-containers repo under the src/tools/log-parser folder and vendor the modules Fixes: #4100 Signed-off-by: Snir Sheriber <ssheribe@redhat.com>
36 lines
787 B
Makefile
36 lines
787 B
Makefile
#
|
|
# Copyright (c) 2017-2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
TARGET = kata-log-parser
|
|
SOURCES = $(shell find . 2>&1 | grep -E '.*\.go$$')
|
|
|
|
VERSION := ${shell cat ./VERSION}
|
|
COMMIT_NO := $(shell git rev-parse HEAD 2> /dev/null || true)
|
|
COMMIT := $(if $(shell git status --porcelain --untracked-files=no),"${COMMIT_NO}-dirty","${COMMIT_NO}")
|
|
|
|
BINDIR := $(GOPATH)/bin
|
|
DESTTARGET := $(abspath $(BINDIR)/$(TARGET))
|
|
|
|
default: install
|
|
|
|
check:
|
|
go test .
|
|
|
|
test:
|
|
go test -v .
|
|
|
|
$(TARGET): $(SOURCES) check
|
|
go build -o "$(TARGET)" -ldflags "-X main.name=${TARGET} -X main.commit=${COMMIT} -X main.version=${VERSION}" .
|
|
|
|
install: $(TARGET)
|
|
install -d $(shell dirname $(DESTTARGET))
|
|
install $(TARGET) $(DESTTARGET)
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|
|
.PHONY: test install clean
|