commit 469564bcbabc69fc0cf6f831b75f5678a859f215 parent 67910264cd5dc90417a641bc5e268ad4b71c3718 Author: Markus Hanetzok <markus@hanetzok.net> Date: Sat, 15 Jun 2024 10:25:54 +0200 Fix old name in Makefile Diffstat:
M | Makefile | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile @@ -2,14 +2,14 @@ default: build build: clean cp sensors.def.h sensors.h - gcc -Wall -o mts mts.c -l curl + gcc -Wall -o sds sds.c -l curl install: build - cp -f mts /usr/bin/mts - chmod +x /usr/bin/mts + cp -f mts /usr/bin/sds + chmod +x /usr/bin/sds uninstall: - rm -f /usr/bin/mts + rm -f /usr/bin/sds clean: - rm -rf mts + rm -rf sds