mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 12:00:58 +07:00
071bf69a02
Move watchdog examples to samples and remove it from Documentation Makefile. Create a new Makefile to build watchdog. It can be built from top level directory or from watchdog directory: Run make -C samples/watchdog or cd samples/watchdog; make Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
9 lines
92 B
Makefile
9 lines
92 B
Makefile
CC := $(CROSS_COMPILE)gcc
|
|
PROGS := watchdog-simple
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -fr $(PROGS)
|
|
|