c05564c4d8
Android 13
10 lines
127 B
Makefile
Executable file
10 lines
127 B
Makefile
Executable file
# SPDX-License-Identifier: GPL-2.0
|
|
CC := $(CROSS_COMPILE)gcc
|
|
PROGS := watchdog-simple
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -fr $(PROGS)
|
|
|