mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
10 lines
93 B
Makefile
10 lines
93 B
Makefile
CC = gcc
|
|
|
|
.PHONY: clean
|
|
|
|
ins_rm_mod: ins_rm_mod.c
|
|
$(CC) -o '$@' '$<'
|
|
|
|
clean:
|
|
rm ins_rm_mod
|