Jeff Thompson | ca45e55 | 2013-06-26 17:40:06 -0700 | [diff] [blame] | 1 | include aminclude.am |
| 2 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 3 | ## Place generated object files (.o) into the same directory as their source |
| 4 | ## files, in order to avoid collisions when non-recursive make is used. |
| 5 | AUTOMAKE_OPTIONS = subdir-objects |
| 6 | |
| 7 | ## Additional flags to pass to aclocal when it is invoked automatically at |
| 8 | ## make time. The ${ACLOCAL_FLAGS} variable is picked up from the environment |
| 9 | ## to provide a way for the user to supply additional arguments. |
| 10 | ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} |
| 11 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 12 | lib_LTLIBRARIES = libndn-c.la libndn-cpp.la |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame] | 13 | |
Jeff Thompson | 990599b | 2013-08-27 15:14:25 -0700 | [diff] [blame] | 14 | bin_PROGRAMS = bin/test-encode-decode-forwarding-entry bin/test-encode-decode-interest bin/test-encode-decode-data \ |
| 15 | bin/test-get-async bin/test-publish-async |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 16 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 17 | libndn_c_la_SOURCES = \ |
Jeff Thompson | 6cb56f9 | 2013-07-01 15:38:09 -0700 | [diff] [blame] | 18 | config.h \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 19 | ndn-cpp/c/data.h \ |
Jeff Thompson | 990599b | 2013-08-27 15:14:25 -0700 | [diff] [blame] | 20 | ndn-cpp/c/errors.c ndn-cpp/c/errors.h \ |
| 21 | ndn-cpp/c/forwarding-entry.h \ |
Jeff Thompson | 2e0e088 | 2013-08-12 17:55:13 -0700 | [diff] [blame] | 22 | ndn-cpp/c/interest.c ndn-cpp/c/interest.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 23 | ndn-cpp/c/key.h \ |
Jeff Thompson | f1ba9bd | 2013-08-12 17:43:08 -0700 | [diff] [blame] | 24 | ndn-cpp/c/name.c ndn-cpp/c/name.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 25 | ndn-cpp/c/publisher-public-key-digest.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 26 | ndn-cpp/c/encoding/binary-xml.h \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 27 | ndn-cpp/c/encoding/binary-xml-data.c ndn-cpp/c/encoding/binary-xml-data.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 28 | ndn-cpp/c/encoding/binary-xml-decoder.c ndn-cpp/c/encoding/binary-xml-decoder.h \ |
| 29 | ndn-cpp/c/encoding/binary-xml-element-reader.c ndn-cpp/c/encoding/binary-xml-element-reader.h \ |
| 30 | ndn-cpp/c/encoding/binary-xml-encoder.c ndn-cpp/c/encoding/binary-xml-encoder.h \ |
Jeff Thompson | 990599b | 2013-08-27 15:14:25 -0700 | [diff] [blame] | 31 | ndn-cpp/c/encoding/binary-xml-forwarding-entry.c ndn-cpp/c/encoding/binary-xml-forwarding-entry.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 32 | ndn-cpp/c/encoding/binary-xml-interest.c ndn-cpp/c/encoding/binary-xml-interest.h \ |
| 33 | ndn-cpp/c/encoding/binary-xml-key.c ndn-cpp/c/encoding/binary-xml-key.h \ |
| 34 | ndn-cpp/c/encoding/binary-xml-name.c ndn-cpp/c/encoding/binary-xml-name.h \ |
| 35 | ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.c ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.h \ |
| 36 | ndn-cpp/c/encoding/binary-xml-structure-decoder.c ndn-cpp/c/encoding/binary-xml-structure-decoder.h \ |
| 37 | ndn-cpp/c/transport/socket-transport.c ndn-cpp/c/transport/socket-transport.h \ |
| 38 | ndn-cpp/c/transport/tcp-transport.h \ |
| 39 | ndn-cpp/c/transport/udp-transport.h \ |
Jeff Thompson | 8dc775b | 2013-08-29 17:16:42 -0700 | [diff] [blame] | 40 | ndn-cpp/c/util/blob.h \ |
Jeff Thompson | 3af7e79 | 2013-08-23 14:22:11 -0700 | [diff] [blame] | 41 | ndn-cpp/c/util/crypto.c ndn-cpp/c/util/crypto.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 42 | ndn-cpp/c/util/dynamic-uchar-array.c ndn-cpp/c/util/dynamic-uchar-array.h \ |
Jeff Thompson | 4554509 | 2013-07-16 18:36:26 -0700 | [diff] [blame] | 43 | ndn-cpp/c/util/ndn_memory.c ndn-cpp/c/util/ndn_memory.h \ |
| 44 | ndn-cpp/c/util/ndn_realloc.c ndn-cpp/c/util/ndn_realloc.h |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 45 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 46 | libndn_cpp_la_SOURCES = \ |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 47 | config.h \ |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 48 | ndn-cpp/common.hpp ndn-cpp/common.cpp \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 49 | ndn-cpp/data.cpp ndn-cpp/c/data.h ndn-cpp/data.hpp \ |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 50 | ndn-cpp/face.cpp ndn-cpp/face.hpp \ |
Jeff Thompson | 990599b | 2013-08-27 15:14:25 -0700 | [diff] [blame] | 51 | ndn-cpp/forwarding-entry.cpp ndn-cpp/c/forwarding-entry.h ndn-cpp/forwarding-entry.hpp \ |
Jeff Thompson | e2cd587 | 2013-09-19 15:53:29 -0700 | [diff] [blame] | 52 | ndn-cpp/interest.cpp ndn-cpp/c/interest.h ndn-cpp/interest.hpp \ |
| 53 | ndn-cpp/key.cpp ndn-cpp/c/key.h ndn-cpp/key.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 54 | ndn-cpp/name.cpp ndn-cpp/c/name.h ndn-cpp/name.hpp \ |
Jeff Thompson | 6cd5931 | 2013-08-21 17:56:13 -0700 | [diff] [blame] | 55 | ndn-cpp/node.cpp ndn-cpp/node.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 56 | ndn-cpp/publisher-public-key-digest.hpp \ |
Jeff Thompson | 7b79eb6 | 2013-09-12 18:48:29 -0700 | [diff] [blame] | 57 | ndn-cpp/sha256-with-rsa-signature.cpp ndn-cpp/sha256-with-rsa-signature.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 58 | ndn-cpp/c/encoding/binary-xml.h \ |
| 59 | ndn-cpp/c/encoding/binary-xml-decoder.h ndn-cpp/encoding/binary-xml-decoder.hpp \ |
| 60 | ndn-cpp/c/encoding/binary-xml-element-reader.h ndn-cpp/encoding/binary-xml-element-reader.cpp ndn-cpp/encoding/binary-xml-element-reader.hpp \ |
| 61 | ndn-cpp/c/encoding/binary-xml-encoder.h ndn-cpp/encoding/binary-xml-encoder.hpp ndn-cpp/c/util/dynamic-uchar-array.h \ |
| 62 | ndn-cpp/c/encoding/binary-xml-structure-decoder.h ndn-cpp/encoding/binary-xml-structure-decoder.hpp \ |
| 63 | ndn-cpp/encoding/binary-xml-wire-format.cpp ndn-cpp/c/encoding/binary-xml-name.h ndn-cpp/encoding/binary-xml-wire-format.hpp \ |
| 64 | ndn-cpp/encoding/wire-format.cpp ndn-cpp/encoding/wire-format.hpp \ |
Jeff Thompson | 7b79eb6 | 2013-09-12 18:48:29 -0700 | [diff] [blame] | 65 | ndn-cpp/security/security-common.hpp \ |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 66 | ndn-cpp/security/key-chain.cpp ndn-cpp/security/key-chain.hpp \ |
Jeff Thompson | c057343 | 2013-09-19 17:41:36 -0700 | [diff] [blame] | 67 | ndn-cpp/security/security-exception.cpp ndn-cpp/security/security-exception.hpp \ |
| 68 | ndn-cpp/security/certificate/oid.cpp ndn-cpp/security/certificate/oid.hpp \ |
| 69 | ndn-cpp/security/certificate/public-key.cpp ndn-cpp/security/certificate/public-key.hpp \ |
Jeff Thompson | 7b79eb6 | 2013-09-12 18:48:29 -0700 | [diff] [blame] | 70 | ndn-cpp/security/identity/identity-manager.cpp ndn-cpp/security/identity/identity-manager.hpp \ |
| 71 | ndn-cpp/security/identity/private-key-storage.cpp ndn-cpp/identity/security/private-key-storage.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 72 | ndn-cpp/c/transport/socket-transport.h ndn-cpp/c/transport/tcp-transport.h ndn-cpp/transport/tcp-transport.cpp ndn-cpp/transport/tcp-transport.hpp \ |
| 73 | ndn-cpp/transport/transport.cpp ndn-cpp/transport/transport.hpp \ |
Jeff Thompson | 529779a | 2013-08-12 13:15:55 -0700 | [diff] [blame] | 74 | ndn-cpp/c/transport/socket-transport.h ndn-cpp/c/transport/udp-transport.h ndn-cpp/transport/udp-transport.cpp ndn-cpp/transport/udp-transport.hpp \ |
Jeff Thompson | 25e8938 | 2013-09-11 15:35:19 -0700 | [diff] [blame] | 75 | ndn-cpp/util/blob.hpp \ |
Jeff Thompson | a04f23c | 2013-09-16 17:48:38 -0700 | [diff] [blame] | 76 | ndn-cpp/util/changed-event.cpp ndn-cpp/util/changed-event.hpp \ |
Jeff Thompson | d56753e | 2013-09-13 16:46:17 -0700 | [diff] [blame] | 77 | ndn-cpp/util/dynamic-uchar-vector.cpp ndn-cpp/util/dynamic-uchar-vector.hpp \ |
Jeff Thompson | e2cd587 | 2013-09-19 15:53:29 -0700 | [diff] [blame] | 78 | ndn-cpp/util/logging.cpp ndn-cpp/util/logging.hpp \ |
Jeff Thompson | d56753e | 2013-09-13 16:46:17 -0700 | [diff] [blame] | 79 | ndn-cpp/util/signed-blob.hpp |
Jeff Thompson | 27e2feb | 2013-07-01 15:09:57 -0700 | [diff] [blame] | 80 | |
Jeff Thompson | 990599b | 2013-08-27 15:14:25 -0700 | [diff] [blame] | 81 | bin_test_encode_decode_forwarding_entry_SOURCES = tests/test-encode-decode-forwarding-entry.cpp |
| 82 | bin_test_encode_decode_forwarding_entry_LDADD = libndn-cpp.la libndn-c.la |
| 83 | |
Jeff Thompson | e32adb6 | 2013-08-02 13:18:36 -0700 | [diff] [blame] | 84 | bin_test_encode_decode_interest_SOURCES = tests/test-encode-decode-interest.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame] | 85 | bin_test_encode_decode_interest_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 86 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 87 | bin_test_encode_decode_data_SOURCES = tests/test-encode-decode-data.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame] | 88 | bin_test_encode_decode_data_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame] | 89 | |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 90 | bin_test_get_async_SOURCES = tests/test-get-async.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame] | 91 | bin_test_get_async_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 92 | |
Jeff Thompson | cf624b9 | 2013-08-23 20:51:06 -0700 | [diff] [blame] | 93 | bin_test_publish_async_SOURCES = tests/test-publish-async.cpp |
| 94 | bin_test_publish_async_LDADD = libndn-cpp.la libndn-c.la |
| 95 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 96 | dist_noinst_SCRIPTS = autogen.sh |