Jeff Thompson | ca45e55 | 2013-06-26 17:40:06 -0700 | [diff] [blame] | 1 | include aminclude.am |
| 2 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 3 | ## 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. |
| 5 | AUTOMAKE_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. |
| 10 | ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} |
| 11 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 12 | lib_LTLIBRARIES = libndn-c.la libndn-cpp.la |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame] | 13 | |
Jeff Thompson | e32adb6 | 2013-08-02 13:18:36 -0700 | [diff] [blame] | 14 | bin_PROGRAMS = bin/test-encode-decode-interest bin/test-encode-decode-data bin/test-get-async |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 15 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 16 | libndn_c_la_SOURCES = \ |
Jeff Thompson | 6cb56f9 | 2013-07-01 15:38:09 -0700 | [diff] [blame] | 17 | config.h \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 18 | ndn-cpp/c/data.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 19 | ndn-cpp/c/interest.h \ |
| 20 | ndn-cpp/c/key.h \ |
| 21 | ndn-cpp/c/name.h \ |
| 22 | ndn-cpp/c/publisher-public-key-digest.h \ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 23 | ndn-cpp/c/errors.c ndn-cpp/c/errors.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 24 | ndn-cpp/c/encoding/binary-xml.h \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 25 | ndn-cpp/c/encoding/binary-xml-data.c ndn-cpp/c/encoding/binary-xml-data.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 26 | ndn-cpp/c/encoding/binary-xml-decoder.c ndn-cpp/c/encoding/binary-xml-decoder.h \ |
| 27 | ndn-cpp/c/encoding/binary-xml-element-reader.c ndn-cpp/c/encoding/binary-xml-element-reader.h \ |
| 28 | ndn-cpp/c/encoding/binary-xml-encoder.c ndn-cpp/c/encoding/binary-xml-encoder.h \ |
| 29 | ndn-cpp/c/encoding/binary-xml-interest.c ndn-cpp/c/encoding/binary-xml-interest.h \ |
| 30 | ndn-cpp/c/encoding/binary-xml-key.c ndn-cpp/c/encoding/binary-xml-key.h \ |
| 31 | ndn-cpp/c/encoding/binary-xml-name.c ndn-cpp/c/encoding/binary-xml-name.h \ |
| 32 | ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.c ndn-cpp/c/encoding/binary-xml-publisher-public-key-digest.h \ |
| 33 | ndn-cpp/c/encoding/binary-xml-structure-decoder.c ndn-cpp/c/encoding/binary-xml-structure-decoder.h \ |
| 34 | ndn-cpp/c/transport/socket-transport.c ndn-cpp/c/transport/socket-transport.h \ |
| 35 | ndn-cpp/c/transport/tcp-transport.h \ |
| 36 | ndn-cpp/c/transport/udp-transport.h \ |
| 37 | ndn-cpp/c/util/dynamic-uchar-array.c ndn-cpp/c/util/dynamic-uchar-array.h \ |
Jeff Thompson | 4554509 | 2013-07-16 18:36:26 -0700 | [diff] [blame] | 38 | 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 Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 40 | |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 41 | libndn_cpp_la_SOURCES = \ |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 42 | config.h \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 43 | ndn-cpp/closure.hpp \ |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 44 | ndn-cpp/common.hpp ndn-cpp/common.cpp \ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 45 | ndn-cpp/data.cpp ndn-cpp/c/data.h ndn-cpp/data.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 46 | ndn-cpp/interest.cpp ndn-cpp/c/interest.h ndn-cpp/interest.hpp \ |
Jeff Thompson | b3768ae | 2013-08-08 21:22:45 -0700 | [diff] [blame] | 47 | ndn-cpp/key-chain.cpp ndn-cpp/key-chain.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 48 | ndn-cpp/key.cpp ndn-cpp/c/key.h ndn-cpp/key.hpp \ |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 49 | ndn-cpp/face.cpp ndn-cpp/face.hpp \ |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 50 | ndn-cpp/name.cpp ndn-cpp/c/name.h ndn-cpp/name.hpp \ |
| 51 | ndn-cpp/publisher-public-key-digest.hpp \ |
| 52 | ndn-cpp/c/encoding/binary-xml.h \ |
| 53 | ndn-cpp/c/encoding/binary-xml-decoder.h ndn-cpp/encoding/binary-xml-decoder.hpp \ |
| 54 | 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 \ |
| 55 | ndn-cpp/c/encoding/binary-xml-encoder.h ndn-cpp/encoding/binary-xml-encoder.hpp ndn-cpp/c/util/dynamic-uchar-array.h \ |
| 56 | ndn-cpp/c/encoding/binary-xml-structure-decoder.h ndn-cpp/encoding/binary-xml-structure-decoder.hpp \ |
| 57 | ndn-cpp/encoding/binary-xml-wire-format.cpp ndn-cpp/c/encoding/binary-xml-name.h ndn-cpp/encoding/binary-xml-wire-format.hpp \ |
| 58 | ndn-cpp/encoding/wire-format.cpp ndn-cpp/encoding/wire-format.hpp \ |
| 59 | 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 \ |
| 60 | ndn-cpp/transport/transport.cpp ndn-cpp/transport/transport.hpp \ |
| 61 | 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 Thompson | 27e2feb | 2013-07-01 15:09:57 -0700 | [diff] [blame] | 62 | |
Jeff Thompson | e32adb6 | 2013-08-02 13:18:36 -0700 | [diff] [blame] | 63 | bin_test_encode_decode_interest_SOURCES = tests/test-encode-decode-interest.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame^] | 64 | bin_test_encode_decode_interest_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 65 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 66 | bin_test_encode_decode_data_SOURCES = tests/test-encode-decode-data.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame^] | 67 | bin_test_encode_decode_data_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame] | 68 | |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 69 | bin_test_get_async_SOURCES = tests/test-get-async.cpp |
Jeff Thompson | 8a055e0 | 2013-08-09 10:44:28 -0700 | [diff] [blame^] | 70 | bin_test_get_async_LDADD = libndn-cpp.la libndn-c.la |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 71 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 72 | dist_noinst_SCRIPTS = autogen.sh |