aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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