-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
95 lines (78 loc) · 2.25 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
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = tests share config
DIST_SUBDIRS = tests share config
AM_CFLAGS = -Wall -ggdb -D_GNU_SOURCE -DSBINDIR=\"$(SBINDIR)\" -pthread
AM_CFLAGS += $(FUSE_CFLAGS)
AM_CFLAGS += -DLIBDIR=\"$(LIBDIR)\"
AM_LDFLAGS = $(FUSE_LIBS) -pthread
#AM_CFLAGS += -DDEBUG
AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
liblxcfs_la_CFLAGS = $(AM_CFLAGS)
liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
liblxcfstest_la_SOURCES = bindings.c cpuset.c bindings.h macro.h
liblxcfstest_la_CFLAGS = $(AM_CFLAGS) -DRELOADTEST
liblxcfstest_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
noinst_HEADERS = bindings.h macro.h
sodir=$(libdir)
lib_LTLIBRARIES = liblxcfs.la
EXTRA_LTLIBRARIES = liblxcfstest.la
lxcfs_SOURCES = lxcfs.c
lxcfs_LDADD = -ldl
lxcfs_CFLAGS = $(AM_CFLAGS)
lxcfs_LDFLAGS = $(AM_LDFLAGS)
bin_PROGRAMS = lxcfs
EXTRA_DIST = \
lxcfs.man.add
if HAVE_HELP2MAN
man_MANS = lxcfs.1
lxcfs.1: lxcfs lxcfs.man.add
$(HELP2MAN) -n "Set up cgroup fs for containers" --no-discard-stderr -s 1 -I lxcfs.man.add -N ./lxcfs > lxcfs.1
endif
TEST_READ: tests/test-read.c
$(CC) -o tests/test-read tests/test-read.c
TEST_CPUSET: tests/cpusetrange.c cpuset.c
$(CC) -o tests/cpusetrange tests/cpusetrange.c cpuset.c
TEST_SYSCALLS: tests/test_syscalls.c
$(CC) -o tests/test_syscalls tests/test_syscalls.c
if HAVE_PAM
pam_LTLIBRARIES = pam_cgfs.la
pam_cgfs_la_SOURCES = pam/pam_cgfs.c macro.h
pam_cgfs_la_CFLAGS = $(AM_CFLAGS)
pam_cgfs_la_LIBADD = $(AM_LIBS) $(PAM_LIBS) -L$(top_srcdir)
pam_cgfs_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version -shared
# pam_cgfs_la_CFLAGS += -DDEBUG
install-data-hook: install-pamLTLIBRARIES
rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.la"
rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.a"
uninstall-local:
rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.so"
endif
tests: TEST_READ TEST_CPUSET TEST_SYSCALLS
distclean:
rm -rf .deps/ \
INSTALL \
Makefile \
Makefile.in \
aclocal.m4 \
autom4te.cache/ \
compile \
config.guess \
config.h \
config.h.in \
config.log \
config.status \
config.sub \
configure \
depcomp \
install-sh \
libtool \
ltmain.sh \
lxcfs \
lxcfs.1 \
lxcfs.o \
m4/ \
missing \
stamp-h1 \
tests/test_syscalls \
*.lo *.la