blob: 0e49f840ada6bf33fb31c461af67a55c5c550ab7 [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 Thompsonc98be1a2013-07-14 22:44:43 -070014bin_PROGRAMS = bin/test-encode-decode-Interest bin/test-encode-decode-ContentObject 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 Thompson5cae5e52013-07-10 19:41:20 -070018 ndn-cpp/c/ContentObject.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 Thompson5cae5e52013-07-10 19:41:20 -070025 ndn-cpp/c/encoding/BinaryXMLContentObject.c ndn-cpp/c/encoding/BinaryXMLContentObject.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 Thompson25f8e612013-07-15 11:30:21 -070034 ndn-cpp/c/transport/TcpTransport.c ndn-cpp/c/transport/TcpTransport.c \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070035 ndn-cpp/c/util/DynamicUCharArray.c ndn-cpp/c/util/DynamicUCharArray.h \
36 ndn-cpp/c/util/ndn_memory.c ndn-cpp/c/util/ndn_memory.h
Jeff Thompsonff092f52013-06-19 13:38:12 -070037
Jeff Thompson27e2feb2013-07-01 15:09:57 -070038libndn_cpp_a_SOURCES = \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070039 config.h ndn-cpp/common.hpp \
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070040 ndn-cpp/Closure.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070041 ndn-cpp/ContentObject.cpp ndn-cpp/c/ContentObject.h ndn-cpp/ContentObject.hpp \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070042 ndn-cpp/Interest.cpp ndn-cpp/c/Interest.h ndn-cpp/Interest.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070043 ndn-cpp/Key.cpp ndn-cpp/c/Key.h ndn-cpp/Key.hpp \
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070044 ndn-cpp/NDN.cpp ndn-cpp/NDN.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070045 ndn-cpp/Name.cpp ndn-cpp/c/Name.h ndn-cpp/Name.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070046 ndn-cpp/PublisherPublicKeyDigest.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070047 ndn-cpp/c/encoding/BinaryXML.h \
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070048 ndn-cpp/c/encoding/BinaryXMLDecoder.h ndn-cpp/encoding/BinaryXMLDecoder.hpp \
49 ndn-cpp/c/encoding/BinaryXMLElementReader.h ndn-cpp/encoding/BinaryXMLElementReader.cpp ndn-cpp/encoding/BinaryXMLElementReader.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070050 ndn-cpp/c/encoding/BinaryXMLEncoder.h ndn-cpp/encoding/BinaryXMLEncoder.hpp ndn-cpp/c/util/DynamicUCharArray.h \
51 ndn-cpp/c/encoding/BinaryXMLStructureDecoder.h ndn-cpp/encoding/BinaryXMLStructureDecoder.hpp \
52 ndn-cpp/encoding/BinaryXMLWireFormat.cpp ndn-cpp/c/encoding/BinaryXMLName.h ndn-cpp/encoding/BinaryXMLWireFormat.hpp \
Jeff Thompson25f8e612013-07-15 11:30:21 -070053 ndn-cpp/encoding/WireFormat.cpp ndn-cpp/encoding/WireFormat.hpp \
Jeff Thompson0e72a162013-07-15 11:35:06 -070054 ndn-cpp/transport/TcpTransport.cpp ndn-cpp/transport/TcpTransport.hpp \
Jeff Thompson25f8e612013-07-15 11:30:21 -070055 ndn-cpp/transport/Transport.cpp ndn-cpp/transport/Transport.hpp
Jeff Thompson27e2feb2013-07-01 15:09:57 -070056
Jeff Thompson5cae5e52013-07-10 19:41:20 -070057bin_test_encode_decode_Interest_SOURCES = tests/test-encode-decode-Interest.cpp
58bin_test_encode_decode_Interest_LDADD = libndn-c.a libndn-cpp.a
59
60bin_test_encode_decode_ContentObject_SOURCES = tests/test-encode-decode-ContentObject.cpp
61bin_test_encode_decode_ContentObject_LDADD = libndn-c.a libndn-cpp.a
Jeff Thompson36174062013-06-21 16:03:44 -070062
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070063bin_test_get_async_SOURCES = tests/test-get-async.cpp
64bin_test_get_async_LDADD = libndn-c.a libndn-cpp.a
65
Jeff Thompsonff092f52013-06-19 13:38:12 -070066dist_noinst_SCRIPTS = autogen.sh