11 lines
246 B
Makefile
11 lines
246 B
Makefile
# Makefile for building both modules for the local machine
|
|
|
|
obj-m += tcp_roccet.o
|
|
obj-m += roccet_kprobe.o
|
|
|
|
all:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
|
|
|
clean:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|