diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2014-01-06 13:41:59 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-01-11 15:03:25 +0000 |
commit | e963e3ada17e7592ad499b9d7fbb3355287a05ca (patch) | |
tree | 7de6383df371c81f17500f0dd338fa6d534e5c3d /Makefile.am | |
parent | e0d4a0ac06afb856c9370c5c256f0f7bb7efdc8e (diff) |
sd-dns: initial commit
Origin: <http://0pointer.de/lennart/projects/libasyncns/>
[tomegun: renamed some more files asyncns -> sd-dns and moved to libsystemd-bus as
requested by Lennart]
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index fcde54e379..8b3b81daca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -667,6 +667,35 @@ tests += \ # ------------------------------------------------------------------------------ noinst_LTLIBRARIES += \ + libsystemd-dns.la + +libsystemd_dns_la_SOURCES = \ + src/systemd/sd-dns.h \ + src/libsystemd-bus/sd-dns.c \ + src/libsystemd-bus/dns-util.h + +libsystemd_dns_la_LIBADD = \ + libsystemd-shared.la + +libsystemd_dns_la_CFLAGS = \ + -pthread + +test_dns_SOURCES = \ + src/libsystemd-bus/test-dns.c \ + src/systemd/sd-dns.h + +test_dns_LDADD = \ + libsystemd-dns.la + +test_dns_LDFLAGS = \ + -lresolv \ + -pthread + +tests += \ + test-dns + +# ------------------------------------------------------------------------------ +noinst_LTLIBRARIES += \ libsystemd-shared.la libsystemd_shared_la_SOURCES = \ |