mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 03:48:11 +07:00
9 lines
92 B
Makefile
9 lines
92 B
Makefile
|
CC := $(CROSS_COMPILE)gcc
|
||
|
PROGS := watchdog-simple
|
||
|
|
||
|
all: $(PROGS)
|
||
|
|
||
|
clean:
|
||
|
rm -fr $(PROGS)
|
||
|
|