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 | |
Alexander Afanasyev | c134b6f | 2015-02-12 17:01:44 -0800 | [diff] [blame] | 4 | NFD_BOOST_LIBS = system filesystem chrono program_options random thread |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 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 \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 35 | daemon/face/ndnlp-data.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 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 \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 46 | daemon/face/websocket-channel.cpp \ |
| 47 | daemon/face/websocket-face.cpp \ |
| 48 | daemon/face/websocket-factory.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 49 | daemon/fw/access-strategy.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 50 | daemon/fw/best-route-strategy.cpp \ |
| 51 | daemon/fw/best-route-strategy2.cpp \ |
| 52 | daemon/fw/broadcast-strategy.cpp \ |
| 53 | daemon/fw/client-control-strategy.cpp \ |
| 54 | daemon/fw/face-table.cpp \ |
| 55 | daemon/fw/forwarder.cpp \ |
Alexander Afanasyev | aacd65b | 2015-09-04 14:07:07 -0700 | [diff] [blame^] | 56 | daemon/fw/multicast-strategy.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 57 | daemon/fw/ncc-strategy.cpp \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 58 | daemon/fw/retx-suppression-exponential.cpp \ |
Alexander Afanasyev | aacd65b | 2015-09-04 14:07:07 -0700 | [diff] [blame^] | 59 | daemon/fw/retx-suppression-fixed.cpp \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 60 | daemon/fw/retx-suppression.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 61 | daemon/fw/rtt-estimator.cpp \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 62 | daemon/fw/strategy-registry.cpp \ |
Alexander Afanasyev | aacd65b | 2015-09-04 14:07:07 -0700 | [diff] [blame^] | 63 | daemon/fw/strategy.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 64 | daemon/mgmt/channel-status-publisher.cpp \ |
| 65 | daemon/mgmt/command-validator.cpp \ |
| 66 | daemon/mgmt/face-manager.cpp \ |
| 67 | daemon/mgmt/face-query-status-publisher.cpp \ |
| 68 | daemon/mgmt/face-status-publisher.cpp \ |
| 69 | daemon/mgmt/fib-enumeration-publisher.cpp \ |
| 70 | daemon/mgmt/fib-manager.cpp \ |
| 71 | daemon/mgmt/general-config-section.cpp \ |
| 72 | daemon/mgmt/internal-face.cpp \ |
| 73 | daemon/mgmt/manager-base.cpp \ |
| 74 | daemon/mgmt/status-server.cpp \ |
| 75 | daemon/mgmt/strategy-choice-manager.cpp \ |
| 76 | daemon/mgmt/strategy-choice-publisher.cpp \ |
| 77 | daemon/mgmt/tables-config-section.cpp \ |
Alexander Afanasyev | aacd65b | 2015-09-04 14:07:07 -0700 | [diff] [blame^] | 78 | daemon/nfd.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 79 | daemon/table/cs-entry-impl.cpp \ |
| 80 | daemon/table/cs-entry.cpp \ |
Alexander Afanasyev | aacd65b | 2015-09-04 14:07:07 -0700 | [diff] [blame^] | 81 | daemon/table/cs-policy-lru.cpp \ |
| 82 | daemon/table/cs-policy-priority-fifo.cpp \ |
| 83 | daemon/table/cs-policy.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 84 | daemon/table/cs.cpp \ |
| 85 | daemon/table/dead-nonce-list.cpp \ |
| 86 | daemon/table/fib-entry.cpp \ |
| 87 | daemon/table/fib-nexthop.cpp \ |
| 88 | daemon/table/fib.cpp \ |
| 89 | daemon/table/measurements-accessor.cpp \ |
| 90 | daemon/table/measurements-entry.cpp \ |
| 91 | daemon/table/measurements.cpp \ |
| 92 | daemon/table/name-tree-entry.cpp \ |
| 93 | daemon/table/name-tree.cpp \ |
| 94 | daemon/table/pit-entry.cpp \ |
| 95 | daemon/table/pit-face-record.cpp \ |
| 96 | daemon/table/pit-in-record.cpp \ |
| 97 | daemon/table/pit-out-record.cpp \ |
| 98 | daemon/table/pit.cpp \ |
| 99 | daemon/table/strategy-choice-entry.cpp \ |
| 100 | daemon/table/strategy-choice.cpp \ |
| 101 | daemon/table/strategy-info-host.cpp \ |
| 102 | \ |
| 103 | rib/fib-update.cpp \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 104 | rib/fib-updater.cpp \ |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 105 | rib/nrd.cpp \ |
| 106 | rib/remote-registrator.cpp \ |
| 107 | rib/rib-entry.cpp \ |
| 108 | rib/rib-manager.cpp \ |
| 109 | rib/rib-status-publisher.cpp \ |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 110 | rib/rib-update-batch.cpp \ |
| 111 | rib/rib-update.cpp \ |
| 112 | rib/rib.cpp \ |
| 113 | rib/route.cpp |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 114 | LOCAL_SRC_FILES := $(addprefix NFD/,$(NFD_DAEMON_SRC_FILES)) |
Alexander Afanasyev | edf1e2b | 2015-04-19 19:31:17 -0700 | [diff] [blame] | 115 | LOCAL_CPPFLAGS := -I$(LOCAL_PATH)/NFD/daemon -I$(LOCAL_PATH)/NFD/rib -I$(LOCAL_PATH)/NFD/websocketpp |
Alexander Afanasyev | 216df01 | 2015-02-10 17:35:46 -0800 | [diff] [blame] | 116 | LOCAL_LDLIBS := -llog |
Alexander Afanasyev | 087c7c1 | 2015-02-02 00:21:21 -0800 | [diff] [blame] | 117 | include $(BUILD_SHARED_LIBRARY) |