-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
123 lines (113 loc) · 2.63 KB
/
Makefile.am
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
## Process this file with automake to produce Makefile.in
CLEANFILES = `find . -name "*~"`
AM_CFLAGS = -Wall -Werror -ggdb -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
AM_MAKEFLAGS = --no-print-directory
sbin_PROGRAMS = bin/spfs bin/spfs-client bin/spfs-manager
noinst_PROGRAMS = bin/swapfd
bin_spfs_SOURCES = spfs/main.c \
spfs/gateway.c \
spfs/proxy.c \
spfs/stub.c \
spfs/context.c \
spfs/interface.c \
spfs/xattr.c \
\
spfs/interface.h \
spfs/context.h \
spfs/xattr.h \
\
src/util.c \
src/log.c \
src/socket.c \
src/futex.c \
src/namespaces.c \
\
include/log.h \
include/socket.h \
include/list.h \
include/util.h \
include/namespaces.h \
include/futex.h
bin_spfs_client_SOURCES = client/main.c \
\
src/socket.c \
src/log.c \
src/util.c \
\
spfs/interface.h \
spfs/context.h \
\
include/socket.h \
include/util.h
bin_spfs_manager_SOURCES = manager/main.c \
manager/context.c \
manager/interface.c \
manager/replace.c \
manager/spfs.c \
manager/freeze.c \
manager/swapfd.c \
manager/swap.c \
manager/trees.c \
manager/processes.c \
manager/cgroup.c \
manager/mount.c \
manager/file_obj.c \
manager/link_remap.c \
manager/unix-sockets.c \
\
manager/context.h \
manager/interface.h \
manager/replace.h \
manager/spfs.h \
manager/freeze.h \
manager/swapfd.h \
manager/swap.h \
manager/trees.h \
manager/processes.h \
manager/cgroup.h \
manager/mount.h \
manager/file_obj.h \
manager/link_remap.h \
manager/unix-sockets.h \
\
src/util.c \
src/socket.c \
src/ipc.c \
src/log.c \
src/shm.c \
src/ptrace.c \
src/pie-util-fd.c \
src/futex.c \
src/namespaces.c \
src/netlink.c \
\
spfs/interface.h \
spfs/context.h \
\
include/log.h \
include/ipc.h \
include/socket.h \
include/list.h \
include/shm.h \
include/ptrace.h \
include/pie-util-fd.h \
include/util.h \
include/namespaces.h \
include/futex.h \
include/netlink.h
bin_swapfd_SOURCES = main.c \
\
manager/swapfd.c \
\
manager/swapfd.h \
\
src/util.c \
src/log.c \
src/ptrace.c \
src/pie-util-fd.c \
\
include/log.h \
include/util.h
include/pie-util-fd.h \
include/ptrace.h
bin_spfs_manager_LDFLAGS = -Wl,--wrap=nla_parse,--wrap=nlmsg_parse