]> git.proxmox.com Git - mirror_lxcfs.git/blobdiff - Makefile.am
Merge pull request #198 from elianka/elianka-dev
[mirror_lxcfs.git] / Makefile.am
index b083b0a072fb0580a584ac6fbb1c8063665ed5a2..3ad276d8389fb609b7faa348ff612ec886e8fdae 100644 (file)
@@ -1,19 +1,35 @@
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = tests share
-DIST_SUBDIRS = tests share
+SUBDIRS = tests share config
+DIST_SUBDIRS = tests share config
 
-VERSION_CURRENT  = 0
-VERSION_REVISION = 0
-VERSION_AGE      = 0
+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 = -Wall -ggdb -D_GNU_SOURCE -DSBINDIR=\"$(SBINDIR)\"
-AM_CFLAGS += $(DBUS_CFLAGS) $(NIH_CFLAGS) $(NIH_DBUS_CFLAGS) $(CGMANAGER_CFLAGS) $(FUSE_CFLAGS)
-AM_LDFLAGS = $(DBUS_LIBS) $(NIH_LIBS) $(NIH_DBUS_LIBS) $(CGMANAGER_LIBS) $(FUSE_LIBS)
+AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
 
-bin_PROGRAMS = lxcfs
+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
 
-lxcfs_SOURCES = lxcfs.c cgmanager.c cgmanager.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
@@ -25,6 +41,31 @@ 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 \
@@ -32,7 +73,6 @@ distclean:
                Makefile.in \
                aclocal.m4 \
                autom4te.cache/ \
-               cgmanager.o \
                compile \
                config.guess \
                config.h \
@@ -50,4 +90,6 @@ distclean:
                lxcfs.o \
                m4/ \
                missing \
-               stamp-h1
+               stamp-h1 \
+               tests/test_syscalls \
+               *.lo *.la