From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Uvarov Subject: [PATCH] dpdk1.7.1 rte.app.mk add options not not build targerts Date: Tue, 9 Jun 2015 13:15:53 +0300 Message-ID: <1433844953-29887-1-git-send-email-maxim.uvarov@linaro.org> To: dev@dpdk.org Return-path: Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id E80955A54 for ; Tue, 9 Jun 2015 12:15:59 +0200 (CEST) Received: by wgv5 with SMTP id 5so9303579wgv.1 for ; Tue, 09 Jun 2015 03:15:58 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Inherit build varibles only so that this file can be included from other projects. Signed-off-by: Maxim Uvarov --- mk/rte.app.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mk/rte.app.mk b/mk/rte.app.mk index 34dff2a..b75925d 100644 --- a/mk/rte.app.mk +++ b/mk/rte.app.mk @@ -222,6 +222,7 @@ endif # ifeq ($(NO_AUTOLIBS),) LDLIBS += $(CPU_LDLIBS) +ifneq ($(DPRK_APP_MK_SKIP_BUILD_TARGETS),1) .PHONY: all all: install @@ -232,6 +233,7 @@ _postinstall: build .PHONY: build build: _postbuild +endif exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1)))) @@ -306,6 +308,7 @@ $(RTE_OUTPUT)/app/$(APP).map: $(APP) @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app +ifneq ($(DPRK_APP_MK_SKIP_BUILD_TARGETS), 1) # # Clean all generated files # @@ -317,7 +320,7 @@ clean: _postclean doclean: $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \ $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd - +endif include $(RTE_SDK)/mk/internal/rte.compile-post.mk include $(RTE_SDK)/mk/internal/rte.install-post.mk -- 1.9.1