From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by dpdk.org (Postfix) with ESMTP id 557E1594A for ; Fri, 25 Apr 2014 14:00:58 +0200 (CEST) Received: by mail-we0-f178.google.com with SMTP id u56so3457453wes.37 for ; Fri, 25 Apr 2014 05:01:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=mZd+qFp3ve1S1LEsWnhsBXRMp05kFdO0wsEPPKxgHeg=; b=NTn748G3ACRUqyDbpfrPrAkEssIOEwN1adfpEQ2NWoYdUVgc/SEfkGLHqMnXWvnZ1y vfx4WL9FRHd3qYQNR3igdrnvudze5jq3gLbxhtw87ffQnOZfpp/huuMlMulTapG1PLtz pOY+ANtyogJ/77m5g1roYysFQajMF9PrErRjUcTAf3RwvNb+DfdHOzFPFKL3rHwRF1oO co94L0a95Q3jlAGEyOc707JoBOki4qvo9JONv63bQ+zVM5G0VrW+M3QBepTGEO8jmVQv n1gyPIgxZDBMYbQXBnfm8lQgV9wE3PvbZ/vx3WgaS6XFTECvT3GNVwuxA/6vXCxrSENh gLFg== X-Gm-Message-State: ALoCoQl9CpO7B4MozG8bYCZ66w3bOHhKjZBLPM4NK1b+6P8TTG1OOC96fdFU2vR/dTQrEVPpRsrn X-Received: by 10.194.188.68 with SMTP id fy4mr6447278wjc.30.1398427261081; Fri, 25 Apr 2014 05:01:01 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id nb8sm5460990wic.18.2014.04.25.05.00.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 Apr 2014 05:01:00 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Fri, 25 Apr 2014 14:00:44 +0200 Message-Id: <1398427249-15418-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 1.9.2 Subject: [dpdk-dev] [PATCH 0/5] examples: add a new makefile to build all examples X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 12:00:58 -0000 This patch series adds a makefile to build all examples supported by the configuration. It helps to check that all examples compile after a dpdk modification. After applying the patches, it is possible to build all examples by doing the following: user@droids:~/dpdk.org$ cd examples user@droids:~/dpdk.org/examples$ make RTE_SDK=${PWD}/.. \ RTE_TARGET=x86_64-default-linuxapp-gcc Olivier Matz (5): mk: introduce rte.extsubdir.mk examples: use rte.extsubdir.mk to process subdirectories examples: add a makefile to build all examples examples: fix qos_sched makefile examples: fix netmap_compat example examples/Makefile | 68 ++++++++++++++++++++++++ examples/l2fwd-ivshmem/Makefile | 9 +--- examples/multi_process/Makefile | 16 +++--- examples/multi_process/client_server_mp/Makefile | 15 +++--- examples/netmap_compat/bridge/Makefile | 5 +- examples/qos_sched/Makefile | 2 - examples/quota_watermark/Makefile | 12 ++--- mk/rte.extsubdir.mk | 49 +++++++++++++++++ 8 files changed, 138 insertions(+), 38 deletions(-) create mode 100644 examples/Makefile create mode 100644 mk/rte.extsubdir.mk -- 1.9.2