X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=probes%2FMakefile;h=554e6ffaf8e34c6a3a889786d3a126bbdc3fe46a;hb=2dccf128a59b5353176277d01da4eabcc2086211;hp=29e114c8994b92c17d51b543b4cdef7061c4ea1c;hpb=0d1d4002e3a9e6de1a6d50932c5e38642dbce4f4;p=lttng-modules.git diff --git a/probes/Makefile b/probes/Makefile index 29e114c8..554e6ffa 100644 --- a/probes/Makefile +++ b/probes/Makefile @@ -8,9 +8,25 @@ ifneq ($(CONFIG_TRACEPOINTS),) ccflags-y += -I$(PWD)/probes 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