Makefile 92 Bytes
CC := $(CROSS_COMPILE)gcc
PROGS := watchdog-simple

all: $(PROGS)

clean:
	rm -fr $(PROGS)