mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 03:01:36 +01:00
8 lines
83 B
Makefile
8 lines
83 B
Makefile
.PHONY: clean
|
|
|
|
ins_rm_mod: ins_rm_mod.c
|
|
$(CC) -o '$@' '$<'
|
|
|
|
clean:
|
|
rm ins_rm_mod
|