X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=probes%2FMakefile;h=554e6ffaf8e34c6a3a889786d3a126bbdc3fe46a;hb=5b88d86e2d45fed6d405fd9fb72d6c1c22d35374;hp=cfe5e75823ee1ecf09a479f330ec8160812ba201;hpb=40652b65bb2b500ea04eaa61c3dfcfaa719073be;p=lttng-modules.git diff --git a/probes/Makefile b/probes/Makefile index cfe5e758..554e6ffa 100644 --- a/probes/Makefile +++ b/probes/Makefile @@ -6,9 +6,28 @@ ifneq ($(KERNELRELEASE),) ifneq ($(CONFIG_TRACEPOINTS),) ccflags-y += -I$(PWD)/probes -#obj-m += sched.o obj-m += lttng-types.o +obj-m += lttng-probe-lttng.o + +obj-m += lttng-probe-sched.o +obj-m += lttng-probe-kvm.o +obj-m += lttng-probe-irq.o +obj-m += lttng-probe-block.o +obj-m += lttng-probe-syscalls.o + +ifneq ($(CONFIG_KPROBES),) +obj-m += lttng-kprobes.o +endif + +ifneq ($(CONFIG_DYNAMIC_FTRACE),) +obj-m += lttng-ftrace.o +endif + +ifneq ($(CONFIG_PERF_EVENTS),) +obj-m += lttng-perf-counters.o +endif + endif else