summaryrefslogtreecommitdiff
path: root/prom-exporter-modbus/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'prom-exporter-modbus/Makefile')
-rw-r--r--prom-exporter-modbus/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/prom-exporter-modbus/Makefile b/prom-exporter-modbus/Makefile
new file mode 100644
index 0000000..cb9d3a4
--- /dev/null
+++ b/prom-exporter-modbus/Makefile
@@ -0,0 +1,20 @@
+VERSION := "invalid"
+GITHUB_BASEURL := "https://github.com/RichiH/modbus_exporter/releases/download"
+
+.PHONY: clean
+
+all: i386/modbus_exporter amd64/modbus_exporter arm64/modbus_exporter
+
+%/modbus_exporter: modbus_exporter-$(VERSION).linux-%.tar.gz
+ mkdir -p $(shell echo $@ | sed 's#/.*##')
+ tar -C $(shell echo $@ | sed 's#/.*##') -xzf "$<" --strip-components=1
+
+modbus_exporter-$(VERSION).linux-%.tar.gz:
+ wget -nc --progress=dot:mega "$(GITHUB_BASEURL)/v$(VERSION)/$(shell echo $@ | sed s/i386/386/)" -O "$@"
+ sha256sum -c --ignore-missing sha256sums.txt
+
+clean:
+ rm -rf i386
+ rm -rf amd64
+ rm -rf arm64
+ rm -f modbus_exporter-$(VERSION).linux-*.tar.gz