CC = gcc
CFLAGS = -s -Os  -Wall -Wpointer-arith -Wstrict-prototypes -fomit-frame-pointer

all: watchdog

watchdog :
	$(CC) $(CFLAGS) -o watchdog watchdog.c

clean :
	-rm -f *.o watchdog

install: 
	-install -m 700 -s watchdog /sbin

