Commit 35cf723e authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Ingo Molnar
Browse files

tracing: small trave_events sample Makefile cleanup



Use -I$(src) to add the current directory the include path.

[ Impact: cleanup ]

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Acked-by: default avatarSteven Rostedt <rostedt@goodmis.org>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 48dd0fed
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
# 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/
CFLAGS_trace-events-sample.o := -I$(src)

obj-$(CONFIG_SAMPLE_TRACE_EVENTS) += trace-events-sample.o