blob: 7cf4e84ad645834517e6298ac63d4314ef8cc12e [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.
10ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
11
Jeff Thompson4f031642013-08-05 11:03:16 -070012lib_LTLIBRARIES = libndn-c.la libndn-cpp.la
Jeff Thompson36174062013-06-21 16:03:44 -070013
Jeff Thompson990599b2013-08-27 15:14:25 -070014bin_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 Thompsonff092f52013-06-19 13:38:12 -070016
Jeff Thompson4f031642013-08-05 11:03:16 -070017libndn_c_la_SOURCES = \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070018 config.h \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070019 ndn-cpp/c/data.h \
Jeff Thompson990599b2013-08-27 15:14:25 -070020 ndn-cpp/c/errors.c ndn-cpp/c/errors.h \
21 ndn-cpp/c/forwarding-entry.h \
Jeff Thompson2e0e0882013-08-12 17:55:13 -070022 ndn-cpp/c/interest.c ndn-cpp/c/interest.h \
Jeff Thompson53412192013-08-06 13:35:50 -070023 ndn-cpp/c/key.h \
Jeff Thompsonf1ba9bd2013-08-12 17:43:08 -070024 ndn-cpp/c/name.c ndn-cpp/c/name.h \
Jeff Thompson53412192013-08-06 13:35:50 -070025 ndn-cpp/c/publisher-public-key-digest.h \
Jeff Thompson53412192013-08-06 13:35:50 -070026 ndn-cpp/c/encoding/binary-xml.h \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070027 ndn-cpp/c/encoding/binary-xml-data.c ndn-cpp/c/encoding/binary-xml-data.h \
Jeff Thompson53412192013-08-06 13:35:50 -070028 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 Thompson990599b2013-08-27 15:14:25 -070031 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 -070032 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 Thompson8dc775b2013-08-29 17:16:42 -070040 ndn-cpp/c/util/blob.h \
Jeff Thompson3af7e792013-08-23 14:22:11 -070041 ndn-cpp/c/util/crypto.c ndn-cpp/c/util/crypto.h \
Jeff Thompson53412192013-08-06 13:35:50 -070042 ndn-cpp/c/util/dynamic-uchar-array.c ndn-cpp/c/util/dynamic-uchar-array.h \
Jeff Thompson45545092013-07-16 18:36:26 -070043 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 Thompsonff092f52013-06-19 13:38:12 -070045
Jeff Thompson4f031642013-08-05 11:03:16 -070046libndn_cpp_la_SOURCES = \
Jeff Thompsona8d7b062013-08-08 15:56:35 -070047 config.h \
Jeff Thompsona8d7b062013-08-08 15:56:35 -070048 ndn-cpp/common.hpp ndn-cpp/common.cpp \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070049 ndn-cpp/data.cpp ndn-cpp/c/data.h ndn-cpp/data.hpp \
Jeff Thompson53412192013-08-06 13:35:50 -070050 ndn-cpp/interest.cpp ndn-cpp/c/interest.h ndn-cpp/interest.hpp \
51 ndn-cpp/key.cpp ndn-cpp/c/key.h ndn-cpp/key.hpp \
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070052 ndn-cpp/face.cpp ndn-cpp/face.hpp \
Jeff Thompson990599b2013-08-27 15:14:25 -070053 ndn-cpp/forwarding-entry.cpp ndn-cpp/c/forwarding-entry.h ndn-cpp/forwarding-entry.hpp \
Jeff Thompson53412192013-08-06 13:35:50 -070054 ndn-cpp/name.cpp ndn-cpp/c/name.h ndn-cpp/name.hpp \
Jeff Thompson6cd59312013-08-21 17:56:13 -070055 ndn-cpp/node.cpp ndn-cpp/node.hpp \
Jeff Thompson53412192013-08-06 13:35:50 -070056 ndn-cpp/publisher-public-key-digest.hpp \
57 ndn-cpp/c/encoding/binary-xml.h \
58 ndn-cpp/c/encoding/binary-xml-decoder.h ndn-cpp/encoding/binary-xml-decoder.hpp \
59 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 \
60 ndn-cpp/c/encoding/binary-xml-encoder.h ndn-cpp/encoding/binary-xml-encoder.hpp ndn-cpp/c/util/dynamic-uchar-array.h \
61 ndn-cpp/c/encoding/binary-xml-structure-decoder.h ndn-cpp/encoding/binary-xml-structure-decoder.hpp \
62 ndn-cpp/encoding/binary-xml-wire-format.cpp ndn-cpp/c/encoding/binary-xml-name.h ndn-cpp/encoding/binary-xml-wire-format.hpp \
63 ndn-cpp/encoding/wire-format.cpp ndn-cpp/encoding/wire-format.hpp \
Jeff Thompson41471912013-09-12 16:21:50 -070064 ndn-cpp/security/identity-manager.cpp ndn-cpp/security/identity-manager.hpp \
65 ndn-cpp/security/key-chain.cpp ndn-cpp/security/key-chain.hpp \
Jeff Thompson53412192013-08-06 13:35:50 -070066 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 \
67 ndn-cpp/transport/transport.cpp ndn-cpp/transport/transport.hpp \
Jeff Thompson529779a2013-08-12 13:15:55 -070068 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 Thompson25e89382013-09-11 15:35:19 -070069 ndn-cpp/util/blob.hpp \
Jeff Thompson529779a2013-08-12 13:15:55 -070070 ndn-cpp/util/dynamic-uchar-vector.cpp ndn-cpp/util/dynamic-uchar-vector.hpp
Jeff Thompson27e2feb2013-07-01 15:09:57 -070071
Jeff Thompson990599b2013-08-27 15:14:25 -070072bin_test_encode_decode_forwarding_entry_SOURCES = tests/test-encode-decode-forwarding-entry.cpp
73bin_test_encode_decode_forwarding_entry_LDADD = libndn-cpp.la libndn-c.la
74
Jeff Thompsone32adb62013-08-02 13:18:36 -070075bin_test_encode_decode_interest_SOURCES = tests/test-encode-decode-interest.cpp
Jeff Thompson8a055e02013-08-09 10:44:28 -070076bin_test_encode_decode_interest_LDADD = libndn-cpp.la libndn-c.la
Jeff Thompson5cae5e52013-07-10 19:41:20 -070077
Jeff Thompson56ec9e22013-08-02 11:34:07 -070078bin_test_encode_decode_data_SOURCES = tests/test-encode-decode-data.cpp
Jeff Thompson8a055e02013-08-09 10:44:28 -070079bin_test_encode_decode_data_LDADD = libndn-cpp.la libndn-c.la
Jeff Thompson36174062013-06-21 16:03:44 -070080
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070081bin_test_get_async_SOURCES = tests/test-get-async.cpp
Jeff Thompson8a055e02013-08-09 10:44:28 -070082bin_test_get_async_LDADD = libndn-cpp.la libndn-c.la
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070083
Jeff Thompsoncf624b92013-08-23 20:51:06 -070084bin_test_publish_async_SOURCES = tests/test-publish-async.cpp
85bin_test_publish_async_LDADD = libndn-cpp.la libndn-c.la
86
Jeff Thompsonff092f52013-06-19 13:38:12 -070087dist_noinst_SCRIPTS = autogen.sh