blob: 0f73cbf3b56a7d8e89bbe21bb1e4a89cf3fa432c [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 Thompson27e2feb2013-07-01 15:09:57 -070012lib_LIBRARIES = libndn-c.a libndn-cpp.a
Jeff Thompson36174062013-06-21 16:03:44 -070013
Jeff Thompsone32adb62013-08-02 13:18:36 -070014bin_PROGRAMS = bin/test-encode-decode-interest bin/test-encode-decode-data bin/test-get-async
Jeff Thompsonff092f52013-06-19 13:38:12 -070015
Jeff Thompson27e2feb2013-07-01 15:09:57 -070016libndn_c_a_SOURCES = \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070017 config.h \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070018 ndn-cpp/c/data.h \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070019 ndn-cpp/c/Interest.h \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070020 ndn-cpp/c/Key.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070021 ndn-cpp/c/Name.h \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070022 ndn-cpp/c/PublisherPublicKeyDigest.h \
Jeff Thompson8b666002013-07-08 01:16:26 -070023 ndn-cpp/c/errors.c ndn-cpp/c/errors.h \
Jeff Thompson617dadb2013-07-02 11:09:28 -070024 ndn-cpp/c/encoding/BinaryXML.h \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070025 ndn-cpp/c/encoding/binary-xml-data.c ndn-cpp/c/encoding/binary-xml-data.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070026 ndn-cpp/c/encoding/BinaryXMLDecoder.c ndn-cpp/c/encoding/BinaryXMLDecoder.h \
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070027 ndn-cpp/c/encoding/BinaryXMLElementReader.c ndn-cpp/c/encoding/BinaryXMLElementReader.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070028 ndn-cpp/c/encoding/BinaryXMLEncoder.c ndn-cpp/c/encoding/BinaryXMLEncoder.h \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070029 ndn-cpp/c/encoding/BinaryXMLInterest.c ndn-cpp/c/encoding/BinaryXMLInterest.h \
Jeff Thompson9915bdd2013-07-11 11:27:09 -070030 ndn-cpp/c/encoding/BinaryXMLKey.c ndn-cpp/c/encoding/BinaryXMLKey.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070031 ndn-cpp/c/encoding/BinaryXMLName.c ndn-cpp/c/encoding/BinaryXMLName.h \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070032 ndn-cpp/c/encoding/BinaryXMLPublisherPublicKeyDigest.c ndn-cpp/c/encoding/BinaryXMLPublisherPublicKeyDigest.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070033 ndn-cpp/c/encoding/BinaryXMLStructureDecoder.c ndn-cpp/c/encoding/BinaryXMLStructureDecoder.h \
Jeff Thompson0aa754a2013-07-17 17:42:28 -070034 ndn-cpp/c/transport/SocketTransport.c ndn-cpp/c/transport/SocketTransport.h \
35 ndn-cpp/c/transport/TcpTransport.h \
36 ndn-cpp/c/transport/UdpTransport.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070037 ndn-cpp/c/util/DynamicUCharArray.c ndn-cpp/c/util/DynamicUCharArray.h \
Jeff Thompson45545092013-07-16 18:36:26 -070038 ndn-cpp/c/util/ndn_memory.c ndn-cpp/c/util/ndn_memory.h \
39 ndn-cpp/c/util/ndn_realloc.c ndn-cpp/c/util/ndn_realloc.h
Jeff Thompsonff092f52013-06-19 13:38:12 -070040
Jeff Thompson27e2feb2013-07-01 15:09:57 -070041libndn_cpp_a_SOURCES = \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070042 config.h ndn-cpp/common.hpp \
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070043 ndn-cpp/Closure.hpp \
Jeff Thompson56ec9e22013-08-02 11:34:07 -070044 ndn-cpp/data.cpp ndn-cpp/c/data.h ndn-cpp/data.hpp \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070045 ndn-cpp/Interest.cpp ndn-cpp/c/Interest.h ndn-cpp/Interest.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070046 ndn-cpp/Key.cpp ndn-cpp/c/Key.h ndn-cpp/Key.hpp \
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070047 ndn-cpp/face.cpp ndn-cpp/face.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070048 ndn-cpp/Name.cpp ndn-cpp/c/Name.h ndn-cpp/Name.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070049 ndn-cpp/PublisherPublicKeyDigest.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070050 ndn-cpp/c/encoding/BinaryXML.h \
Jeff Thompsone32adb62013-08-02 13:18:36 -070051 ndn-cpp/c/encoding/BinaryXMLDecoder.h ndn-cpp/encoding/BinaryXMLDecoder.hpp \
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070052 ndn-cpp/c/encoding/BinaryXMLElementReader.h ndn-cpp/encoding/BinaryXMLElementReader.cpp ndn-cpp/encoding/BinaryXMLElementReader.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070053 ndn-cpp/c/encoding/BinaryXMLEncoder.h ndn-cpp/encoding/BinaryXMLEncoder.hpp ndn-cpp/c/util/DynamicUCharArray.h \
54 ndn-cpp/c/encoding/BinaryXMLStructureDecoder.h ndn-cpp/encoding/BinaryXMLStructureDecoder.hpp \
55 ndn-cpp/encoding/BinaryXMLWireFormat.cpp ndn-cpp/c/encoding/BinaryXMLName.h ndn-cpp/encoding/BinaryXMLWireFormat.hpp \
Jeff Thompson25f8e612013-07-15 11:30:21 -070056 ndn-cpp/encoding/WireFormat.cpp ndn-cpp/encoding/WireFormat.hpp \
Jeff Thompson0aa754a2013-07-17 17:42:28 -070057 ndn-cpp/c/transport/SocketTransport.h ndn-cpp/c/transport/TcpTransport.h ndn-cpp/transport/TcpTransport.cpp ndn-cpp/transport/TcpTransport.hpp \
Jeff Thompsonbc53c522013-07-17 17:11:48 -070058 ndn-cpp/transport/Transport.cpp ndn-cpp/transport/Transport.hpp \
Jeff Thompson0aa754a2013-07-17 17:42:28 -070059 ndn-cpp/c/transport/SocketTransport.h ndn-cpp/c/transport/UdpTransport.h ndn-cpp/transport/UdpTransport.cpp ndn-cpp/transport/UdpTransport.hpp
Jeff Thompson27e2feb2013-07-01 15:09:57 -070060
Jeff Thompsone32adb62013-08-02 13:18:36 -070061bin_test_encode_decode_interest_SOURCES = tests/test-encode-decode-interest.cpp
62bin_test_encode_decode_interest_LDADD = libndn-c.a libndn-cpp.a
Jeff Thompson5cae5e52013-07-10 19:41:20 -070063
Jeff Thompson56ec9e22013-08-02 11:34:07 -070064bin_test_encode_decode_data_SOURCES = tests/test-encode-decode-data.cpp
65bin_test_encode_decode_data_LDADD = libndn-c.a libndn-cpp.a
Jeff Thompson36174062013-06-21 16:03:44 -070066
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070067bin_test_get_async_SOURCES = tests/test-get-async.cpp
68bin_test_get_async_LDADD = libndn-c.a libndn-cpp.a
69
Jeff Thompsonff092f52013-06-19 13:38:12 -070070dist_noinst_SCRIPTS = autogen.sh