mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 16:58:53 +00:00
9 lines
92 B
Makefile
9 lines
92 B
Makefile
|
CC := $(CROSS_COMPILE)gcc
|
||
|
PROGS := watchdog-simple
|
||
|
|
||
|
all: $(PROGS)
|
||
|
|
||
|
clean:
|
||
|
rm -fr $(PROGS)
|
||
|
|