From eef4d99bcd0ad868145af76ca1ad2595ecc3ad19 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Tue, 23 Feb 2016 22:04:50 +0100 Subject: Few improvements in toplevel Makefile Change-Id: I896aed32499cd7159c4b6f3b165cab4e579f6153 Signed-off-by: Damjan Marion --- Makefile | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b7c3e27fd22..35190a1c90b 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,15 @@ GDB?=gdb MINIMAL_STARTUP_CONF="unix { interactive } dpdk { no-pci socket-mem 1024 }" +GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" + DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache DEB_DEPENDS += debhelper dkms openjdk-7-jdk git libtool libganglia1-dev libapr1-dev DEB_DEPENDS += libconfuse-dev git-review +ifneq ("$(wildcard $(STARTUP_DIR)/startup.conf),"") + STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf +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 @@ -49,11 +54,15 @@ help: @echo " V=[0|1] - set build verbosity level" @echo " STARTUP_CONF= - startup configuration file" @echo " (e.g. /etc/vpp/startup.conf)" + @echo " STARTUP_DIR= - startup drectory (e.g. /etc/vpp)" + @echo " It also sets STARTUP_CONF if" + @echo " startup.conf file is present" @echo " GDB= - gdb binary to use for debugging" @echo "" @echo "Current Argumernt Values:" @echo " V = $(V)" @echo " STARTUP_CONF = $(STARTUP_CONF)" + @echo " STARTUP_DIR = $(STARTUP_DIR)" @echo " GDB = $(GDB)" $(BR)/.bootstrap.ok: @@ -104,15 +113,16 @@ wipe-release: $(BR)/.bootstrap.ok rebuild-release: wipe-release build-release +STARTUP_DIR ?= $(PWD) ifeq ("$(wildcard $(STARTUP_CONF))","") define run @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" - @sudo $(1) $(MINIMAL_STARTUP_CONF) + @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF) endef else define run - @sudo $(1) -c $(STARTUP_CONF) + @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF) endef endif @@ -123,10 +133,10 @@ run-release: $(call run, $(BR)/install-vpp-native/vpp/bin/vpp) debug: - $(call run, $(GDB) --args $(BR)/install-vpp_debug-native/vpp/bin/vpp) + $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-vpp_debug-native/vpp/bin/vpp) debug-release: - $(call run, $(GDB) --args $(BR)/install-vpp-native/vpp/bin/vpp) + $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-vpp-native/vpp/bin/vpp) build-vat: $(call make,vpp_debug,vpp-api-test-install) -- cgit 1.2.3-korg