From abda2001b80bc71f48cfbdc02a4f8988e5f30a39 Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Wed, 1 Apr 2026 20:36:46 +0200 Subject: init --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..62231fb --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -O3 +PREFIX = /usr/local + +watchdog: watchdog.c + $(CC) $(CFLAGS) watchdog.c -o watchdog + +install: watchdog + install -Dm 755 watchdog "$(PREFIX)/bin/watchdog" + +.PHONY: install -- cgit v1.2.3