X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=probes%2FMakefile;h=78c0c69903882a36d7d6c241a4c503eff7c8e885;hb=8070f5c01e8e64ce52912dd4f27021c5d9e3dce2;hp=597e245e062a7eae1b16818c02c415179173b499;hpb=299338c88005db478c3a62ea58862eb0ba267d6d;p=lttng-modules.git diff --git a/probes/Makefile b/probes/Makefile index 597e245e..78c0c699 100644 --- a/probes/Makefile +++ b/probes/Makefile @@ -6,9 +6,30 @@ 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 + +obj-m += lttng-context-pid.o + endif else