blob: 779bd10294c2a2dc0ca1a77410548aaae30ad795 [file] [log] [blame]
Jeff Thompsonca45e552013-06-26 17:40:06 -07001include aminclude.am
2
Jeff Thompsonff092f52013-06-19 13:38:12 -07003## 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.
5AUTOMAKE_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 Thompson23cb7422013-10-09 16:11:47 -070010ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
Jeff Thompsonff092f52013-06-19 13:38:12 -070011
Jeff Thompson6e229042013-10-10 11:09:49 -070012# "make install" will also install the include headers.
13SUBDIRS = include
14
Jeff Thompson4f031642013-08-05 11:03:16 -070015lib_LTLIBRARIES = libndn-c.la libndn-cpp.la
Jeff Thompson36174062013-06-21 16:03:44 -070016
Jeff Thompson0a6c0272013-10-10 18:00:34 -070017noinst_PROGRAMS = bin/test-encode-decode-forwarding-entry bin/test-encode-decode-interest bin/test-encode-decode-data \
Jeff Thompson990599b2013-08-27 15:14:25 -070018 bin/test-get-async bin/test-publish-async
Jeff Thompsonff092f52013-06-19 13:38:12 -070019
Jeff Thompson25b4e612013-10-10 16:03:24 -070020# Public C headers.
21ndn_cpp_c_headers = \
22 include/ndn-cpp/ndn-cpp-config.h \
23 include/ndn-cpp/c/common.h \
24 include/ndn-cpp/c/data-types.h \
25 include/ndn-cpp/c/forwarding-flags.h \
26 include/ndn-cpp/c/interest-types.h \
27 include/ndn-cpp/c/key-types.h \
28 include/ndn-cpp/c/encoding/element-listener.h
29
30# Public C++ headers.
31ndn_cpp_cpp_headers = \
32 include/ndn-cpp/common.hpp \
33 include/ndn-cpp/data.hpp \
34 include/ndn-cpp/face.hpp \
35 include/ndn-cpp/forwarding-entry.hpp \
36 include/ndn-cpp/forwarding-flags.hpp \
37 include/ndn-cpp/interest.hpp \
38 include/ndn-cpp/key.hpp \
39 include/ndn-cpp/name.hpp \
40 include/ndn-cpp/node.hpp \
41 include/ndn-cpp/publisher-public-key-digest.hpp \
42 include/ndn-cpp/sha256-with-rsa-signature.hpp \
43 include/ndn-cpp/encoding/element-listener.hpp \
44 include/ndn-cpp/encoding/binary-xml-wire-format.hpp \
45 include/ndn-cpp/encoding/wire-format.hpp \
46 include/ndn-cpp/security/security-common.hpp \
47 include/ndn-cpp/security/key-chain.hpp \
48 include/ndn-cpp/security/security-exception.hpp \
Jeff Thompsonf39a5362013-10-10 16:22:44 -070049 include/ndn-cpp/security/certificate/certificate.hpp \
Jeff Thompsoncf0fdd92013-10-12 11:54:35 -070050 include/ndn-cpp/security/certificate/identity-certificate.hpp \
Jeff Thompson25b4e612013-10-10 16:03:24 -070051 include/ndn-cpp/security/certificate/oid.hpp \
52 include/ndn-cpp/security/certificate/public-key.hpp \
53 include/ndn-cpp/security/encryption/encryption-manager.hpp \
54 include/ndn-cpp/security/identity/basic-identity-storage.hpp \
55 include/ndn-cpp/security/identity/identity-manager.hpp \
56 include/ndn-cpp/security/identity/identity-storage.hpp \
57 include/ndn-cpp/security/identity/memory-identity-storage.hpp \
58 include/ndn-cpp/security/identity/memory-private-key-storage.hpp \
59 include/ndn-cpp/security/identity/osx-private-key-storage.hpp \
60 include/ndn-cpp/security/identity/private-key-storage.hpp \
61 include/ndn-cpp/security/policy/no-verify-policy-manager.hpp \
62 include/ndn-cpp/security/policy/policy-manager.hpp \
63 include/ndn-cpp/transport/tcp-transport.hpp \
64 include/ndn-cpp/transport/transport.hpp \
65 include/ndn-cpp/transport/udp-transport.hpp \
66 include/ndn-cpp/util/blob.hpp \
67 include/ndn-cpp/util/signed-blob.hpp
68
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -070069# Just the C code.
Jeff Thompson25b4e612013-10-10 16:03:24 -070070libndn_c_la_SOURCES = $(ndn_cpp_c_headers) \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070071 ndn-cpp/c/data.h \
Jeff Thompson990599b2013-08-27 15:14:25 -070072 ndn-cpp/c/errors.c ndn-cpp/c/errors.h \
73 ndn-cpp/c/forwarding-entry.h \
Jeff Thompson25b4e612013-10-10 16:03:24 -070074 ndn-cpp/c/forwarding-flags.c \
Jeff Thompson2e0e0882013-08-12 17:55:13 -070075 ndn-cpp/c/interest.c ndn-cpp/c/interest.h \
Jeff Thompsonf1ba9bd2013-08-12 17:43:08 -070076 ndn-cpp/c/name.c ndn-cpp/c/name.h \
Jeff Thompson53412192013-08-06 13:35:50 -070077 ndn-cpp/c/publisher-public-key-digest.h \
Jeff Thompson53412192013-08-06 13:35:50 -070078 ndn-cpp/c/encoding/binary-xml.h \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070079 ndn-cpp/c/encoding/binary-xml-data.c ndn-cpp/c/encoding/binary-xml-data.h \
Jeff Thompson53412192013-08-06 13:35:50 -070080 ndn-cpp/c/encoding/binary-xml-decoder.c ndn-cpp/c/encoding/binary-xml-decoder.h \
81 ndn-cpp/c/encoding/binary-xml-element-reader.c ndn-cpp/c/encoding/binary-xml-element-reader.h \
82 ndn-cpp/c/encoding/binary-xml-encoder.c ndn-cpp/c/encoding/binary-xml-encoder.h \
Jeff Thompson990599b2013-08-27 15:14:25 -070083 ndn-cpp/c/encoding/binary-xml-forwarding-entry.c ndn-cpp/c/encoding/binary-xml-forwarding-entry.h \
Jeff Thompson53412192013-08-06 13:35:50 -070084 ndn-cpp/c/encoding/binary-xml-interest.c ndn-cpp/c/encoding/binary-xml-interest.h \
85 ndn-cpp/c/encoding/binary-xml-key.c ndn-cpp/c/encoding/binary-xml-key.h \
86 ndn-cpp/c/encoding/binary-xml-name.c ndn-cpp/c/encoding/binary-xml-name.h \
87 ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.c ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.h \
88 ndn-cpp/c/encoding/binary-xml-structure-decoder.c ndn-cpp/c/encoding/binary-xml-structure-decoder.h \
89 ndn-cpp/c/transport/socket-transport.c ndn-cpp/c/transport/socket-transport.h \
90 ndn-cpp/c/transport/tcp-transport.h \
91 ndn-cpp/c/transport/udp-transport.h \
Jeff Thompson8dc775b2013-08-29 17:16:42 -070092 ndn-cpp/c/util/blob.h \
Jeff Thompson3af7e792013-08-23 14:22:11 -070093 ndn-cpp/c/util/crypto.c ndn-cpp/c/util/crypto.h \
Jeff Thompson10ad12a2013-09-24 16:19:11 -070094 ndn-cpp/c/util/dynamic-uint8-array.c ndn-cpp/c/util/dynamic-uint8-array.h \
Jeff Thompson45545092013-07-16 18:36:26 -070095 ndn-cpp/c/util/ndn_memory.c ndn-cpp/c/util/ndn_memory.h \
96 ndn-cpp/c/util/ndn_realloc.c ndn-cpp/c/util/ndn_realloc.h
Jeff Thompsonff092f52013-06-19 13:38:12 -070097
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -070098# C++ code and also the C code.
Jeff Thompson25b4e612013-10-10 16:03:24 -070099libndn_cpp_la_SOURCES = $(libndn_c_la_SOURCES) $(ndn_cpp_cpp_headers) \
100 ndn-cpp/common.cpp \
101 ndn-cpp/data.cpp \
102 ndn-cpp/face.cpp \
103 ndn-cpp/forwarding-entry.cpp \
104 ndn-cpp/interest.cpp \
105 ndn-cpp/key.cpp \
106 ndn-cpp/name.cpp \
107 ndn-cpp/node.cpp \
108 ndn-cpp/publisher-public-key-digest.cpp \
109 ndn-cpp/sha256-with-rsa-signature.cpp \
110 ndn-cpp/encoding/binary-xml-decoder.hpp \
111 ndn-cpp/encoding/binary-xml-encoder.hpp \
112 ndn-cpp/encoding/binary-xml-structure-decoder.hpp \
113 ndn-cpp/encoding/binary-xml-wire-format.cpp \
114 ndn-cpp/encoding/element-listener.cpp \
115 ndn-cpp/encoding/wire-format.cpp \
116 ndn-cpp/security/key-chain.cpp \
117 ndn-cpp/security/security-exception.cpp \
118 ndn-cpp/security/certificate/oid.cpp \
119 ndn-cpp/security/certificate/public-key.cpp \
120 ndn-cpp/security/identity/basic-identity-storage.cpp \
121 ndn-cpp/security/identity/identity-manager.cpp \
122 ndn-cpp/security/identity/memory-identity-storage.cpp \
123 ndn-cpp/security/identity/memory-private-key-storage.cpp \
124 ndn-cpp/security/identity/osx-private-key-storage.cpp \
125 ndn-cpp/security/policy/no-verify-policy-manager.cpp \
126 ndn-cpp/transport/tcp-transport.cpp \
127 ndn-cpp/transport/transport.cpp \
128 ndn-cpp/transport/udp-transport.cpp \
129 ndn-cpp/util/blob.cpp \
Jeff Thompsona04f23c2013-09-16 17:48:38 -0700130 ndn-cpp/util/changed-event.cpp ndn-cpp/util/changed-event.hpp \
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700131 ndn-cpp/util/dynamic-uint8-vector.cpp ndn-cpp/util/dynamic-uint8-vector.hpp \
Jeff Thompson25b4e612013-10-10 16:03:24 -0700132 ndn-cpp/util/logging.cpp ndn-cpp/util/logging.hpp
Jeff Thompson27e2feb2013-07-01 15:09:57 -0700133
Jeff Thompson990599b2013-08-27 15:14:25 -0700134bin_test_encode_decode_forwarding_entry_SOURCES = tests/test-encode-decode-forwarding-entry.cpp
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -0700135bin_test_encode_decode_forwarding_entry_LDADD = libndn-cpp.la
Jeff Thompson990599b2013-08-27 15:14:25 -0700136
Jeff Thompsone32adb62013-08-02 13:18:36 -0700137bin_test_encode_decode_interest_SOURCES = tests/test-encode-decode-interest.cpp
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -0700138bin_test_encode_decode_interest_LDADD = libndn-cpp.la
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700139
Jeff Thompson56ec9e22013-08-02 11:34:07 -0700140bin_test_encode_decode_data_SOURCES = tests/test-encode-decode-data.cpp
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -0700141bin_test_encode_decode_data_LDADD = libndn-cpp.la
Jeff Thompson36174062013-06-21 16:03:44 -0700142
Jeff Thompsonc98be1a2013-07-14 22:44:43 -0700143bin_test_get_async_SOURCES = tests/test-get-async.cpp
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -0700144bin_test_get_async_LDADD = libndn-cpp.la
Jeff Thompsonc98be1a2013-07-14 22:44:43 -0700145
Jeff Thompsoncf624b92013-08-23 20:51:06 -0700146bin_test_publish_async_SOURCES = tests/test-publish-async.cpp
Jeff Thompson2bf5cdf2013-10-02 16:55:23 -0700147bin_test_publish_async_LDADD = libndn-cpp.la
Jeff Thompsoncf624b92013-08-23 20:51:06 -0700148
Jeff Thompsonff092f52013-06-19 13:38:12 -0700149dist_noinst_SCRIPTS = autogen.sh