Makefile 92 B

123456789
  1. CC := $(CROSS_COMPILE)gcc
  2. PROGS := watchdog-simple
  3. all: $(PROGS)
  4. clean:
  5. rm -fr $(PROGS)