/usr/src/sysdig-0.8.0/Makefile is in sysdig-dkms 0.8.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | sysdig-probe-y += main.o dynamic_params_table.o flags_table.o ppm_events.o ppm_fillers.o event_table.o syscall_table.o ppm_cputime.o
obj-m += sysdig-probe.o
ccflags-y :=
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
TOP := $(shell pwd)
all:
$(MAKE) -C $(KERNELDIR) M=$(TOP) modules
clean:
$(MAKE) -C $(KERNELDIR) M=$(TOP) clean
install: all
$(MAKE) -C $(KERNELDIR) M=$(TOP) modules_install
|