X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=probes%2FMakefile;h=698a9c9c3674dc0005a18a26e10b09411e3953a7;hb=9edf633abc57e4bd2d38bc6955d1b5115b95e6ee;hp=3125567525560857e2215c18c4e42548001aa929;hpb=6d61b34dfbcb172174d8b95f27462bd192ed2674;p=lttng-modules.git diff --git a/probes/Makefile b/probes/Makefile index 31255675..698a9c9c 100644 --- a/probes/Makefile +++ b/probes/Makefile @@ -1,12 +1,47 @@ # # Makefile for the LTT probes. -# +# Only build from the package top-level directory. Never use with make directly. 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-irq.o +obj-m += lttng-probe-signal.o +obj-m += lttng-probe-timer.o + +obj-m += lttng-probe-statedump.o + +ifneq ($(CONFIG_KVM),) +obj-m += lttng-probe-kvm.o +endif + +ifneq ($(CONFIG_BLOCK),) +ifneq ($(CONFIG_EVENT_TRACING),) # need blk_cmd_buf_len +obj-m += $(shell \ + if [ $(VERSION) -ge 3 \ + -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 38 \) ] ; then \ + echo "lttng-probe-block.o" ; fi;) +endif +endif + +ifneq ($(CONFIG_KPROBES),) +obj-m += lttng-kprobes.o +endif + + +ifneq ($(CONFIG_KRETPROBES),) +obj-m += lttng-kretprobes.o +endif + +ifneq ($(CONFIG_DYNAMIC_FTRACE),) +obj-m += lttng-ftrace.o +endif endif