Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.18-rc2 9 lines 127 B view raw
1# SPDX-License-Identifier: GPL-2.0 2CC := $(CROSS_COMPILE)gcc 3PROGS := watchdog-simple 4 5all: $(PROGS) 6 7clean: 8 rm -fr $(PROGS) 9