diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-12 03:15:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-12 13:35:32 +0100 |
commit | d7c7c334f56edab8cfc102b657366277a65738cf (patch) | |
tree | 1f979d8cf1fb749c82522a004dc838bba729184b /Makefile.am | |
parent | 700c6087eb58de7af510f747414ea97b07e08b2b (diff) |
shared: add new btrfs-util.[ch] helpers for doing common btrfs operation
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 15e4484dd1..417074945f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -891,7 +891,9 @@ libsystemd_shared_la_SOURCES = \ src/shared/memfd-util.h \ src/shared/uid-range.c \ src/shared/uid-range.h \ - src/shared/nss-util.h + src/shared/nss-util.h \ + src/shared/btrfs-util.c \ + src/shared/btrfs-util.h if HAVE_UTMP libsystemd_shared_la_SOURCES += \ @@ -1319,7 +1321,8 @@ manual_tests += \ test-install \ test-watchdog \ test-log \ - test-ipcrm + test-ipcrm \ + test-btrfs if HAVE_KMOD manual_tests += \ @@ -1756,6 +1759,12 @@ test_ipcrm_LDADD = \ libsystemd-shared.la \ -lrt +test_btrfs_SOURCES = \ + src/test/test-btrfs.c + +test_btrfs_LDADD = \ + libsystemd-shared.la + test_rtnl_manual_SOURCES = \ src/test/test-rtnl-manual.c |