linux/samples/trace_events/Makefile
Steven Rostedt 9cfe06f8cd tracing/events: add trace-events-sample
This patch adds a sample to the samples directory on how to create
and use TRACE_EVENT trace points.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
2009-04-14 22:09:18 -04:00

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