mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 03:46:38 +07:00
9 lines
249 B
Makefile
9 lines
249 B
Makefile
|
# builds the trace events example kernel modules;
|
||
|
# then to use one (as root): insmod <module_name.ko>
|
||
|
|
||
|
PWD := $(shell pwd)
|
||
|
|
||
|
CFLAGS_trace-events-sample.o := -I$(PWD)/samples/trace_events/
|
||
|
|
||
|
obj-$(CONFIG_SAMPLE_TRACE_EVENTS) += trace-events-sample.o
|