blob: 19e2ed824fcdb7c2845f954ab1dd64c458ffe710 [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 \
27 ndn-cpp/c/encoding/BinaryXMLEncoder.c ndn-cpp/c/encoding/BinaryXMLEncoder.h \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070028 ndn-cpp/c/encoding/BinaryXMLInterest.c ndn-cpp/c/encoding/BinaryXMLInterest.h \
Jeff Thompson9915bdd2013-07-11 11:27:09 -070029 ndn-cpp/c/encoding/BinaryXMLKey.c ndn-cpp/c/encoding/BinaryXMLKey.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070030 ndn-cpp/c/encoding/BinaryXMLName.c ndn-cpp/c/encoding/BinaryXMLName.h \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070031 ndn-cpp/c/encoding/BinaryXMLPublisherPublicKeyDigest.c ndn-cpp/c/encoding/BinaryXMLPublisherPublicKeyDigest.h \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070032 ndn-cpp/c/encoding/BinaryXMLStructureDecoder.c ndn-cpp/c/encoding/BinaryXMLStructureDecoder.h \
Jeff Thompson7850d782013-07-14 17:59:14 -070033 ndn-cpp/c/network/TcpTransport.c ndn-cpp/c/network/TcpTransport.c \
Jeff Thompson6cb56f92013-07-01 15:38:09 -070034 ndn-cpp/c/util/DynamicUCharArray.c ndn-cpp/c/util/DynamicUCharArray.h \
35 ndn-cpp/c/util/ndn_memory.c ndn-cpp/c/util/ndn_memory.h
Jeff Thompsonff092f52013-06-19 13:38:12 -070036
Jeff Thompson27e2feb2013-07-01 15:09:57 -070037libndn_cpp_a_SOURCES = \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070038 config.h ndn-cpp/common.hpp \
39 ndn-cpp/ContentObject.cpp ndn-cpp/c/ContentObject.h ndn-cpp/ContentObject.hpp \
Jeff Thompson5eb86ac2013-07-03 18:37:45 -070040 ndn-cpp/Interest.cpp ndn-cpp/c/Interest.h ndn-cpp/Interest.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070041 ndn-cpp/Key.cpp ndn-cpp/c/Key.h ndn-cpp/Key.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070042 ndn-cpp/Name.cpp ndn-cpp/c/Name.h ndn-cpp/Name.hpp \
Jeff Thompson5cae5e52013-07-10 19:41:20 -070043 ndn-cpp/PublisherPublicKeyDigest.hpp \
Jeff Thompson617dadb2013-07-02 11:09:28 -070044 ndn-cpp/c/encoding/BinaryXML.h \
45 ndn-cpp/c/encoding/BinaryXMLEncoder.h ndn-cpp/encoding/BinaryXMLEncoder.hpp ndn-cpp/c/util/DynamicUCharArray.h \
46 ndn-cpp/c/encoding/BinaryXMLStructureDecoder.h ndn-cpp/encoding/BinaryXMLStructureDecoder.hpp \
47 ndn-cpp/encoding/BinaryXMLWireFormat.cpp ndn-cpp/c/encoding/BinaryXMLName.h ndn-cpp/encoding/BinaryXMLWireFormat.hpp \
Jeff Thompson27e2feb2013-07-01 15:09:57 -070048 ndn-cpp/encoding/WireFormat.cpp ndn-cpp/encoding/WireFormat.hpp
49
Jeff Thompson5cae5e52013-07-10 19:41:20 -070050bin_test_encode_decode_Interest_SOURCES = tests/test-encode-decode-Interest.cpp
51bin_test_encode_decode_Interest_LDADD = libndn-c.a libndn-cpp.a
52
53bin_test_encode_decode_ContentObject_SOURCES = tests/test-encode-decode-ContentObject.cpp
54bin_test_encode_decode_ContentObject_LDADD = libndn-c.a libndn-cpp.a
Jeff Thompson36174062013-06-21 16:03:44 -070055
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070056bin_test_get_async_SOURCES = tests/test-get-async.cpp
57bin_test_get_async_LDADD = libndn-c.a libndn-cpp.a
58
Jeff Thompsonff092f52013-06-19 13:38:12 -070059dist_noinst_SCRIPTS = autogen.sh