]> git.proxmox.com Git - mirror_lxcfs.git/blame_incremental - Makefile.am
loadavg: restart thread on library reload
[mirror_lxcfs.git] / Makefile.am
... / ...
CommitLineData
1ACLOCAL_AMFLAGS = -I m4
2
3SUBDIRS = tests share config
4DIST_SUBDIRS = tests share config
5
6AM_CFLAGS = -Wall -ggdb -D_GNU_SOURCE -DSBINDIR=\"$(SBINDIR)\" -pthread
7AM_CFLAGS += $(FUSE_CFLAGS)
8AM_CFLAGS += -DLIBDIR=\"$(LIBDIR)\"
9AM_LDFLAGS = $(FUSE_LIBS) -pthread
10#AM_CFLAGS += -DDEBUG
11
12AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
13
14liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
15liblxcfs_la_CFLAGS = $(AM_CFLAGS)
16liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
17
18liblxcfstest_la_SOURCES = bindings.c cpuset.c bindings.h macro.h
19liblxcfstest_la_CFLAGS = $(AM_CFLAGS) -DRELOADTEST
20liblxcfstest_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
21
22noinst_HEADERS = bindings.h macro.h
23
24sodir=$(libdir)
25lxcfs_LTLIBRARIES = liblxcfs.la
26EXTRA_LTLIBRARIES = liblxcfstest.la
27
28lxcfs_SOURCES = lxcfs.c
29lxcfs_LDADD = -ldl
30lxcfs_CFLAGS = $(AM_CFLAGS)
31lxcfs_LDFLAGS = $(AM_LDFLAGS)
32bin_PROGRAMS = lxcfs
33
34EXTRA_DIST = \
35 lxcfs.man.add
36
37if HAVE_HELP2MAN
38man_MANS = lxcfs.1
39
40lxcfs.1: lxcfs lxcfs.man.add
41 $(HELP2MAN) -n "Set up cgroup fs for containers" --no-discard-stderr -s 1 -I lxcfs.man.add -N ./lxcfs > lxcfs.1
42endif
43
44TEST_READ: tests/test-read.c
45 $(CC) -o tests/test-read tests/test-read.c
46TEST_CPUSET: tests/cpusetrange.c cpuset.c
47 $(CC) -o tests/cpusetrange tests/cpusetrange.c cpuset.c
48TEST_SYSCALLS: tests/test_syscalls.c
49 $(CC) -o tests/test_syscalls tests/test_syscalls.c
50
51tests: TEST_READ TEST_CPUSET TEST_SYSCALLS
52
53distclean:
54 rm -rf .deps/ \
55 INSTALL \
56 Makefile \
57 Makefile.in \
58 aclocal.m4 \
59 autom4te.cache/ \
60 compile \
61 config.guess \
62 config.h \
63 config.h.in \
64 config.log \
65 config.status \
66 config.sub \
67 configure \
68 depcomp \
69 install-sh \
70 libtool \
71 ltmain.sh \
72 lxcfs \
73 lxcfs.1 \
74 lxcfs.o \
75 m4/ \
76 missing \
77 stamp-h1 \
78 tests/test_syscalls \
79 *.lo *.la