aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-01 22:18:41 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-01 22:18:41 +0200
commit102ded275951f107447434c933d1e3d98ac82bfa (patch)
treeb22b482bd8ddacf88e4e461df068e95ad730978f /Makefile
parentfc93ed97cd02e7c737a3fdcd93faa6c866ab2d7a (diff)
downloadburstdog-102ded275951f107447434c933d1e3d98ac82bfa.tar.xz
rename to burstdog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5f7c715..e578636 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
CFLAGS = -O3 -Wall -Wextra
PREFIX = /usr/local
-watchdog: watchdog.c
- $(CC) $(CFLAGS) watchdog.c -o watchdog
+burstdog: burstdog.c
+ $(CC) $(CFLAGS) burstdog.c -o burstdog
-install: watchdog
- install -Dm 755 watchdog "$(PREFIX)/bin/watchdog"
+install: burstdog
+ install -Dm 755 burstdog "$(PREFIX)/bin/burstdog"
.PHONY: install