diff options
author | Ole Troan <ot@cisco.com> | 2016-06-15 14:29:08 +0200 |
---|---|---|
committer | Ole Troan <ot@cisco.com> | 2016-06-15 16:10:08 +0200 |
commit | 3b3688f9d3a640a169e9c7fc858d36ab3aeb147e (patch) | |
tree | 5fc72f464da8410e9a838aef62c1bc5a8886a181 /Makefile | |
parent | f0f852251c885fc5f73125a4365cf356feeb0cdd (diff) |
6rd: Move to plugin
- Change toplevel plugins make target. Now builds all plugins under
plugins/. (Apart from sample-plugin).
- Move sixrd code to plugins directory and make necessary changes to
make it a plugin
- Remove 6rd hooks from IP lookup code
Change-Id: I447e92e3bee240cd8de01d0abac2e1708e8c27d1
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -53,7 +53,7 @@ endif .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm -.PHONY: ctags cscope doxygen wipe-doxygen +.PHONY: ctags cscope doxygen wipe-doxygen plugins plugins-release help: @echo "Make Targets:" @@ -163,10 +163,10 @@ wipe-release: $(BR)/.bootstrap.ok rebuild-release: wipe-release build-release plugins: $(BR)/.bootstrap.ok - $(call make,$(PLATFORM)_debug,sample-plugin-install) + $(call make,$(PLATFORM)_debug,plugins-install) plugins-release: $(BR)/.bootstrap.ok - $(call make,$(PLATFORM),sample-plugin-install) + $(call make,$(PLATFORM),plugins-install) STARTUP_DIR ?= $(PWD) ifeq ("$(wildcard $(STARTUP_CONF))","") |