diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-21 22:15:06 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-21 22:15:06 +0200 |
commit | 15ae422b7471cf6f41ccf450243d8afd8ea0a054 (patch) | |
tree | 4d44b599571defe496890db757dfe987942594bd /Makefile.am | |
parent | 020379a7f7d2cca3ab37942db3d67d06c45083fe (diff) |
execute: support basic filesystem namespacing
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 567490ea63..7afa2f1576 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,7 +52,8 @@ pkglibexec_PROGRAMS = \ noinst_PROGRAMS = \ test-engine \ - test-job-type + test-job-type \ + test-ns dbuspolicy_DATA = \ org.freedesktop.systemd1.conf @@ -161,7 +162,9 @@ COMMON_SOURCES= \ unit-name.c \ unit-name.h \ fdset.c \ - fdset.h + fdset.h \ + namespace.h \ + namespace.c systemd_SOURCES = \ $(COMMON_SOURCES) \ @@ -192,6 +195,14 @@ test_job_type_SOURCES = \ test_job_type_CPPFLAGS = $(systemd_CPPFLAGS) test_job_type_LDADD = $(systemd_LDADD) +test_ns_SOURCES = \ + $(BASIC_SOURCES) \ + test-ns.c \ + namespace.c + +test_ns_CPPFLAGS = $(systemd_CPPFLAGS) +test_ns_LDADD = $(systemd_LDADD) + systemd_logger_SOURCES = \ $(BASIC_SOURCES) \ logger.c |