From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Vorel Subject: [PATCH iproute2 1/1] Makefile: Add check target Date: Fri, 21 Sep 2018 22:29:16 +0200 Message-ID: <20180921202916.27933-1-petr.vorel@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Petr Vorel , Stephen Hemminger To: netdev@vger.kernel.org Return-path: Received: from mail-wm1-f47.google.com ([209.85.128.47]:34653 "EHLO mail-wm1-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391089AbeIVCTz (ORCPT ); Fri, 21 Sep 2018 22:19:55 -0400 Received: by mail-wm1-f47.google.com with SMTP id j25-v6so5077231wmc.1 for ; Fri, 21 Sep 2018 13:29:23 -0700 (PDT) Sender: netdev-owner@vger.kernel.org List-ID: Signed-off-by: Petr Vorel --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 25de3893..b7488add 100644 --- a/Makefile +++ b/Makefile @@ -77,6 +77,7 @@ help: @echo " clean - remove products of build" @echo " distclean - remove configuration and build" @echo " install - install binaries on local machine" + @echo " check - run tests" @echo " cscope - build cscope database" @echo " snapshot - generate version number header" @echo "" @@ -118,6 +119,9 @@ clobber: distclean: clobber +check: + cd testsuite && $(MAKE) && $(MAKE) alltests + cscope: cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc -- 2.19.0.rc2