diff options
author | Tom Gundersen <teg@jklm.no> | 2015-12-08 17:31:09 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-12-08 17:31:09 +0100 |
commit | 319c29920c2324a07958a38c8db34efd1fc85c00 (patch) | |
tree | 2ea35793e41364612ae433ea8076d62873d2adb9 /Makefile.am | |
parent | 73f72c61086f77b75431b1c6a068cea3fe6b9222 (diff) | |
parent | a0e4cae82065edae47885614d73c534171aa8f7b (diff) |
Merge pull request #2115 from dvdhrm/rbtree
basic: add RB-Tree implementation
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 41d0daaba2..e28edfc8cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -766,6 +766,8 @@ libbasic_la_SOURCES = \ src/basic/missing.h \ src/basic/capability-util.c \ src/basic/capability-util.h \ + src/basic/c-rbtree.c \ + src/basic/c-rbtree.h \ src/basic/conf-files.c \ src/basic/conf-files.h \ src/basic/stdio-util.h \ @@ -1493,6 +1495,7 @@ tests += \ test-copy \ test-cap-list \ test-sigbus \ + test-rbtree \ test-verbs \ test-af-list \ test-arphrd-list \ @@ -1729,6 +1732,12 @@ test_sigbus_SOURCES = \ test_sigbus_LDADD = \ libshared.la +test_rbtree_SOURCES = \ + src/test/test-rbtree.c + +test_rbtree_LDADD = \ + libshared.la + test_condition_SOURCES = \ src/test/test-condition.c |