blob: 06c6dea1eb84cd14bcd8018309e517f5fac44ffe (
plain)
1
2
3
4
5
6
7
8
|
# 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
|