]> git.proxmox.com Git - mirror_lxcfs.git/blob - Makefile.am
enable debug option
[mirror_lxcfs.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 SUBDIRS = tests share config
4 DIST_SUBDIRS = tests share config
5
6 AM_CFLAGS = -Wall -ggdb -D_GNU_SOURCE -DSBINDIR=\"$(SBINDIR)\" -pthread
7 AM_CFLAGS += $(FUSE_CFLAGS)
8 AM_CFLAGS += -DLIBDIR=\"$(LIBDIR)\"
9 AM_LDFLAGS = $(FUSE_LIBS) -pthread
10 #AM_CFLAGS += -DDEBUG
11
12 AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
13
14 liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
15 liblxcfs_la_CFLAGS = $(AM_CFLAGS)
16 liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
17
18 liblxcfstest_la_SOURCES = bindings.c cpuset.c bindings.h macro.h
19 liblxcfstest_la_CFLAGS = $(AM_CFLAGS) -DRELOADTEST
20 liblxcfstest_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
21
22 noinst_HEADERS = bindings.h macro.h
23
24 sodir=$(libdir)
25 lib_LTLIBRARIES = liblxcfs.la
26 EXTRA_LTLIBRARIES = liblxcfstest.la
27
28 lxcfs_SOURCES = lxcfs.c
29 lxcfs_LDADD = -ldl
30 lxcfs_CFLAGS = $(AM_CFLAGS)
31 lxcfs_LDFLAGS = $(AM_LDFLAGS)
32 bin_PROGRAMS = lxcfs
33
34 EXTRA_DIST = \
35 lxcfs.man.add
36
37 if HAVE_HELP2MAN
38 man_MANS = lxcfs.1
39
40 lxcfs.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
42 endif
43
44 TEST_READ: tests/test-read.c
45 $(CC) -o tests/test-read tests/test-read.c
46 TEST_CPUSET: tests/cpusetrange.c cpuset.c
47 $(CC) -o tests/cpusetrange tests/cpusetrange.c cpuset.c
48 TEST_SYSCALLS: tests/test_syscalls.c
49 $(CC) -o tests/test_syscalls tests/test_syscalls.c
50
51 if HAVE_PAM
52 pam_LTLIBRARIES = pam_cgfs.la
53 pam_cgfs_la_SOURCES = pam/pam_cgfs.c macro.h
54 pam_cgfs_la_CFLAGS = $(AM_CFLAGS)
55 pam_cgfs_la_LIBADD = $(AM_LIBS) $(PAM_LIBS) -L$(top_srcdir)
56 pam_cgfs_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version -shared
57 # pam_cgfs_la_CFLAGS += -DDEBUG
58
59 install-data-hook: install-pamLTLIBRARIES
60 rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.la"
61 rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.a"
62 uninstall-local:
63 rm -f "$(DESTDIR)$(pamdir)/pam_cgfs.so"
64 endif
65
66
67 tests: TEST_READ TEST_CPUSET TEST_SYSCALLS
68
69 distclean:
70 rm -rf .deps/ \
71 INSTALL \
72 Makefile \
73 Makefile.in \
74 aclocal.m4 \
75 autom4te.cache/ \
76 compile \
77 config.guess \
78 config.h \
79 config.h.in \
80 config.log \
81 config.status \
82 config.sub \
83 configure \
84 depcomp \
85 install-sh \
86 libtool \
87 ltmain.sh \
88 lxcfs \
89 lxcfs.1 \
90 lxcfs.o \
91 m4/ \
92 missing \
93 stamp-h1 \
94 tests/test_syscalls \
95 *.lo *.la