From f749179213a772572f578e1f376ba41f8ff1767a Mon Sep 17 00:00:00 2001 From: Thomas Roehl Date: Thu, 25 Nov 2021 17:50:18 +0100 Subject: [PATCH] Add Makefile, update LIKWID Makefile and fix Github Action --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..120256d --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +APP = cc-metric-collector + +all: $(APP) + +$(APP): metric-collector.go + make -C collectors + go build -o $(APP) metric-collector.go + +fmt: + go fmt collectors/*.go + go fmt sinks/*.go + go fmt receivers/*.go + go fmt metric-collector.go