Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | LOCAL_PATH_SAVED := $(LOCAL_PATH) |
| 3 | |
| 4 | NFD_BOOST_LIBS = system filesystem chrono program_options random |
| 5 | |
| 6 | # core |
| 7 | include $(CLEAR_VARS) |
| 8 | LOCAL_MODULE := nfd-core |
| 9 | LOCAL_SHARED_LIBRARIES := cryptopp ndn-cxx $(addsuffix _shared,$(addprefix boost_,$(NFD_BOOST_LIBS))) |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 10 | NFD_CORE_SRC_FILES := \ |
| 11 | core/city-hash.cpp \ |
| 12 | core/config-file.cpp \ |
| 13 | core/global-io.cpp \ |
| 14 | core/network-interface.cpp \ |
| 15 | core/network.cpp \ |
| 16 | core/privilege-helper.cpp \ |
| 17 | core/random.cpp \ |
| 18 | core/scheduler.cpp |
| 19 | LOCAL_SRC_FILES := $(addprefix NFD/,$(NFD_CORE_SRC_FILES)) \ |
| 20 | nfd-android/custom-logger.cpp \ |
| 21 | nfd-android/custom-logger-factory.cpp |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 22 | LOCAL_CPPFLAGS := -I$(LOCAL_PATH)/nfd-android -I$(LOCAL_PATH)/NFD -I$(LOCAL_PATH)/NFD/core |
| 23 | LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/nfd-android $(LOCAL_PATH)/NFD $(LOCAL_PATH)/NFD/core |
| 24 | include $(BUILD_STATIC_LIBRARY) |
| 25 | |
| 26 | # nfd itself |
| 27 | include $(CLEAR_VARS) |
| 28 | LOCAL_MODULE := nfd-daemon |
| 29 | LOCAL_SHARED_LIBRARIES := cryptopp ndn-cxx $(addsuffix _shared,$(addprefix boost_,$(NFD_BOOST_LIBS))) |
| 30 | LOCAL_STATIC_LIBRARIES := nfd-core |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 31 | NFD_DAEMON_SRC_FILES := \ |
| 32 | daemon/face/channel.cpp \ |
| 33 | daemon/face/face.cpp \ |
| 34 | daemon/face/multicast-udp-face.cpp \ |
| 35 | daemon/face/ndnlp-parse.cpp \ |
| 36 | daemon/face/ndnlp-partial-message-store.cpp \ |
| 37 | daemon/face/ndnlp-sequence-generator.cpp \ |
| 38 | daemon/face/ndnlp-slicer.cpp \ |
| 39 | daemon/face/null-face.cpp \ |
| 40 | daemon/face/tcp-channel.cpp \ |
| 41 | daemon/face/tcp-face.cpp \ |
| 42 | daemon/face/tcp-factory.cpp \ |
| 43 | daemon/face/udp-channel.cpp \ |
| 44 | daemon/face/udp-face.cpp \ |
| 45 | daemon/face/udp-factory.cpp \ |
| 46 | daemon/fw/access-strategy.cpp \ |
| 47 | daemon/fw/available-strategies.cpp \ |
| 48 | daemon/fw/best-route-strategy.cpp \ |
| 49 | daemon/fw/best-route-strategy2.cpp \ |
| 50 | daemon/fw/broadcast-strategy.cpp \ |
| 51 | daemon/fw/client-control-strategy.cpp \ |
| 52 | daemon/fw/face-table.cpp \ |
| 53 | daemon/fw/forwarder.cpp \ |
| 54 | daemon/fw/ncc-strategy.cpp \ |
| 55 | daemon/fw/retx-suppression-fixed.cpp \ |
| 56 | daemon/fw/rtt-estimator.cpp \ |
| 57 | daemon/fw/strategy.cpp \ |
| 58 | daemon/nfd.cpp \ |
| 59 | daemon/mgmt/channel-status-publisher.cpp \ |
| 60 | daemon/mgmt/command-validator.cpp \ |
| 61 | daemon/mgmt/face-manager.cpp \ |
| 62 | daemon/mgmt/face-query-status-publisher.cpp \ |
| 63 | daemon/mgmt/face-status-publisher.cpp \ |
| 64 | daemon/mgmt/fib-enumeration-publisher.cpp \ |
| 65 | daemon/mgmt/fib-manager.cpp \ |
| 66 | daemon/mgmt/general-config-section.cpp \ |
| 67 | daemon/mgmt/internal-face.cpp \ |
| 68 | daemon/mgmt/manager-base.cpp \ |
| 69 | daemon/mgmt/status-server.cpp \ |
| 70 | daemon/mgmt/strategy-choice-manager.cpp \ |
| 71 | daemon/mgmt/strategy-choice-publisher.cpp \ |
| 72 | daemon/mgmt/tables-config-section.cpp \ |
| 73 | daemon/table/cs-entry-impl.cpp \ |
| 74 | daemon/table/cs-entry.cpp \ |
| 75 | daemon/table/cs-skip-list-entry.cpp \ |
| 76 | daemon/table/cs.cpp \ |
| 77 | daemon/table/dead-nonce-list.cpp \ |
| 78 | daemon/table/fib-entry.cpp \ |
| 79 | daemon/table/fib-nexthop.cpp \ |
| 80 | daemon/table/fib.cpp \ |
| 81 | daemon/table/measurements-accessor.cpp \ |
| 82 | daemon/table/measurements-entry.cpp \ |
| 83 | daemon/table/measurements.cpp \ |
| 84 | daemon/table/name-tree-entry.cpp \ |
| 85 | daemon/table/name-tree.cpp \ |
| 86 | daemon/table/pit-entry.cpp \ |
| 87 | daemon/table/pit-face-record.cpp \ |
| 88 | daemon/table/pit-in-record.cpp \ |
| 89 | daemon/table/pit-out-record.cpp \ |
| 90 | daemon/table/pit.cpp \ |
| 91 | daemon/table/strategy-choice-entry.cpp \ |
| 92 | daemon/table/strategy-choice.cpp \ |
| 93 | daemon/table/strategy-info-host.cpp \ |
| 94 | \ |
| 95 | rib/fib-update.cpp \ |
| 96 | rib/nrd.cpp \ |
| 97 | rib/remote-registrator.cpp \ |
| 98 | rib/rib-entry.cpp \ |
| 99 | rib/rib-manager.cpp \ |
| 100 | rib/rib-status-publisher.cpp \ |
| 101 | rib/rib.cpp |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 102 | LOCAL_SRC_FILES := $(addprefix NFD/,$(NFD_DAEMON_SRC_FILES)) |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 103 | LOCAL_CPPFLAGS := -I$(LOCAL_PATH)/NFD/daemon -I$(LOCAL_PATH)/NFD/rib |
| 104 | LOCAL_LDLIBS := -llog |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 105 | include $(BUILD_SHARED_LIBRARY) |