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. |
Jeff Thompson | 23cb742 | 2013-10-09 16:11:47 -0700 | [diff] [blame] | 10 | ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4 |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 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 | |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 14 | # "make install" will also install the include headers. |
| 15 | SUBDIRS = include . tests |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 16 | |
Jeff Thompson | 2bf5cdf | 2013-10-02 16:55:23 -0700 | [diff] [blame] | 17 | # Just the C code. |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 18 | ## To regenerate: |
| 19 | ## for i in `find src/c -name '*.c' -or -name '*.h'`; do echo " $i \\"; done |
| 20 | ## |
| 21 | ## Note that public header files do not need to be included here (handled by include/Makefile.am) |
| 22 | libndn_c_la_SOURCES = \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 23 | src/c/data.h \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 24 | src/c/encoding/binary-xml-data.c \ |
| 25 | src/c/encoding/binary-xml-data.h \ |
| 26 | src/c/encoding/binary-xml-decoder.c \ |
| 27 | src/c/encoding/binary-xml-decoder.h \ |
| 28 | src/c/encoding/binary-xml-element-reader.c \ |
| 29 | src/c/encoding/binary-xml-element-reader.h \ |
| 30 | src/c/encoding/binary-xml-encoder.c \ |
| 31 | src/c/encoding/binary-xml-encoder.h \ |
| 32 | src/c/encoding/binary-xml-forwarding-entry.c \ |
| 33 | src/c/encoding/binary-xml-forwarding-entry.h \ |
| 34 | src/c/encoding/binary-xml-interest.c \ |
| 35 | src/c/encoding/binary-xml-interest.h \ |
| 36 | src/c/encoding/binary-xml-key.c \ |
| 37 | src/c/encoding/binary-xml-key.h \ |
| 38 | src/c/encoding/binary-xml-name.c \ |
| 39 | src/c/encoding/binary-xml-name.h \ |
| 40 | src/c/encoding/binary-xml-publisher-public-key-digest.c \ |
| 41 | src/c/encoding/binary-xml-publisher-public-key-digest.h \ |
| 42 | src/c/encoding/binary-xml-structure-decoder.c \ |
| 43 | src/c/encoding/binary-xml-structure-decoder.h \ |
| 44 | src/c/encoding/binary-xml.h \ |
| 45 | src/c/errors.c \ |
| 46 | src/c/errors.h \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 47 | src/c/forwarding-entry.h \ |
| 48 | src/c/forwarding-flags.c \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 49 | src/c/interest.c \ |
| 50 | src/c/interest.h \ |
Jeff Thompson | 98ec85a | 2013-12-17 11:57:56 -0800 | [diff] [blame] | 51 | src/c/key-locator.h \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 52 | src/c/name.c \ |
| 53 | src/c/name.h \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 54 | src/c/publisher-public-key-digest.h \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 55 | src/c/transport/socket-transport.c \ |
| 56 | src/c/transport/socket-transport.h \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 57 | src/c/transport/tcp-transport.h \ |
| 58 | src/c/transport/udp-transport.h \ |
| 59 | src/c/util/blob.h \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 60 | src/c/util/crypto.c \ |
| 61 | src/c/util/crypto.h \ |
| 62 | src/c/util/dynamic-uint8-array.c \ |
| 63 | src/c/util/dynamic-uint8-array.h \ |
| 64 | src/c/util/ndn_memory.c \ |
| 65 | src/c/util/ndn_memory.h \ |
| 66 | src/c/util/ndn_realloc.c \ |
| 67 | src/c/util/ndn_realloc.h \ |
| 68 | src/c/util/time.c \ |
| 69 | src/c/util/time.h |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 70 | |
Alexander Afanasyev | 0d3671a | 2014-01-02 20:09:59 -0800 | [diff] [blame] | 71 | libndn_c_la_LIBADD = @OPENSSL_LIBS@ |
| 72 | libndn_c_la_LDFLAGS = @OPENSSL_LDFLAGS@ |
| 73 | libndn_c_la_CFLAGS = @OPENSSL_INCLUDES@ |
| 74 | |
Jeff Thompson | 2bf5cdf | 2013-10-02 16:55:23 -0700 | [diff] [blame] | 75 | # C++ code and also the C code. |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 76 | ## To regenerate: |
| 77 | ## for i in `find src -name '*.cpp' -or -name '*.hpp' -or -name '*.h' -and -not -path 'src/c/*'`; do echo " $i \\"; done |
| 78 | libndn_cpp_la_SOURCES = $(libndn_c_la_SOURCES) \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 79 | src/common.cpp \ |
| 80 | src/data.cpp \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 81 | src/encoding/binary-xml-decoder.hpp \ |
| 82 | src/encoding/binary-xml-encoder.hpp \ |
| 83 | src/encoding/binary-xml-structure-decoder.hpp \ |
| 84 | src/encoding/binary-xml-wire-format.cpp \ |
Alexander Afanasyev | 13bb51a | 2014-01-02 19:13:26 -0800 | [diff] [blame] | 85 | src/encoding/block.cpp \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 86 | src/encoding/der/der-exception.cpp \ |
| 87 | src/encoding/der/der-exception.hpp \ |
| 88 | src/encoding/der/der.cpp \ |
| 89 | src/encoding/der/der.hpp \ |
| 90 | src/encoding/der/visitor/certificate-data-visitor.cpp \ |
| 91 | src/encoding/der/visitor/certificate-data-visitor.hpp \ |
| 92 | src/encoding/der/visitor/no-arguments-visitor.cpp \ |
| 93 | src/encoding/der/visitor/no-arguments-visitor.hpp \ |
| 94 | src/encoding/der/visitor/print-visitor.cpp \ |
| 95 | src/encoding/der/visitor/print-visitor.hpp \ |
| 96 | src/encoding/der/visitor/public-key-visitor.cpp \ |
| 97 | src/encoding/der/visitor/public-key-visitor.hpp \ |
| 98 | src/encoding/der/visitor/simple-visitor.cpp \ |
| 99 | src/encoding/der/visitor/simple-visitor.hpp \ |
| 100 | src/encoding/der/visitor/visitor.hpp \ |
| 101 | src/encoding/der/visitor/void-no-arguments-visitor.hpp \ |
| 102 | src/encoding/der/visitor/void-visitor.cpp \ |
| 103 | src/encoding/der/visitor/void-visitor.hpp \ |
| 104 | src/encoding/element-listener.cpp \ |
| 105 | src/encoding/oid.cpp \ |
| 106 | src/encoding/wire-format.cpp \ |
Alexander Afanasyev | b3a6af4 | 2014-01-03 13:08:28 -0800 | [diff] [blame] | 107 | src/exclude.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 108 | src/face.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 109 | src/interest.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 110 | src/name.cpp \ |
| 111 | src/node.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 112 | src/security/certificate/certificate-extension.cpp \ |
| 113 | src/security/certificate/certificate-subject-description.cpp \ |
| 114 | src/security/certificate/certificate.cpp \ |
| 115 | src/security/certificate/identity-certificate.cpp \ |
| 116 | src/security/certificate/public-key.cpp \ |
| 117 | src/security/identity/basic-identity-storage.cpp \ |
| 118 | src/security/identity/identity-manager.cpp \ |
Jeff Thompson | 22285ec | 2013-10-22 17:43:02 -0700 | [diff] [blame] | 119 | src/security/identity/identity-storage.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 120 | src/security/identity/memory-identity-storage.cpp \ |
| 121 | src/security/identity/memory-private-key-storage.cpp \ |
| 122 | src/security/identity/osx-private-key-storage.cpp \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 123 | src/security/key-chain.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 124 | src/security/policy/no-verify-policy-manager.cpp \ |
Jeff Thompson | 3a2eb2f | 2013-12-11 11:00:27 -0800 | [diff] [blame] | 125 | src/security/policy/self-verify-policy-manager.cpp \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 126 | src/security/security-exception.cpp \ |
Jeff Thompson | ba16b8f | 2013-12-16 13:11:47 -0800 | [diff] [blame] | 127 | src/security/signature/sha256-with-rsa-handler.cpp \ |
Jeff Thompson | 2db6037 | 2013-10-22 13:38:20 -0700 | [diff] [blame] | 128 | src/transport/tcp-transport.cpp \ |
| 129 | src/transport/transport.cpp \ |
| 130 | src/transport/udp-transport.cpp \ |
| 131 | src/util/blob-stream.hpp \ |
| 132 | src/util/blob.cpp \ |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 133 | src/util/changed-event.cpp \ |
| 134 | src/util/changed-event.hpp \ |
| 135 | src/util/dynamic-uint8-vector.cpp \ |
| 136 | src/util/dynamic-uint8-vector.hpp \ |
| 137 | src/util/logging.cpp \ |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 138 | src/util/logging.hpp \ |
| 139 | src/util/string-helper.hpp |
Jeff Thompson | cf624b9 | 2013-08-23 20:51:06 -0700 | [diff] [blame] | 140 | |
Alexander Afanasyev | 0d3671a | 2014-01-02 20:09:59 -0800 | [diff] [blame] | 141 | libndn_cpp_la_LIBADD = @OPENSSL_LIBS@ @OSX_SECURITY_LIBS@ |
| 142 | libndn_cpp_la_LDFLAGS = @OPENSSL_LDFLAGS@ @SQLITE3_LDFLAGS@ @BOOST_LDFLAGS@ |
| 143 | libndn_cpp_la_CFLAGS = @OPENSSL_INCLUDES@ @SQLITE3_CFLAGS@ @BOOST_CPPFLAGS@ |
| 144 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 145 | dist_noinst_SCRIPTS = autogen.sh |