From c2401c20517a5d0c5e97753e6f160d538bcd726f Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Wed, 11 Aug 2004 05:33:01 +0000 Subject: [PATCH] 2004-08-11 Marcel Telka * Makefile.rules (RECURSIVE_TARGETS, lint-recursive): Removed. (lint): Added command to run recursive make. (.PHONY): Removed lint-recursive. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@602 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/ChangeLog | 6 ++++++ jtag/Makefile.rules | 13 +++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 87496395..2b2970d2 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,9 @@ +2004-08-11 Marcel Telka + + * Makefile.rules (RECURSIVE_TARGETS, lint-recursive): Removed. + (lint): Added command to run recursive make. + (.PHONY): Removed lint-recursive. + 2004-06-13 Marcel Telka * data/broadcom/PARTS: Added BCM4712 entry (Alan Wallace). diff --git a/jtag/Makefile.rules b/jtag/Makefile.rules index b7cb40fa..80dc10d7 100644 --- a/jtag/Makefile.rules +++ b/jtag/Makefile.rules @@ -2,6 +2,7 @@ # $Id$ # # Copyright (C) 2003 ETC s.r.o. +# Copyright (C) 2004 Marcel Telka # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -18,17 +19,13 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # -# Written by Marcel Telka , 2003. +# Written by Marcel Telka , 2003, 2004. # -RECURSIVE_TARGETS = -RECURSIVE_TARGETS += lint-recursive - -lint: lint-recursive +lint: -test "$(SOURCES)" && splint $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(SOURCES) - -lint-recursive: + test -z "$(SUBDIRS)" || $(MAKE) RECURSIVE_TARGETS=lint-recursive $(AM_MAKEFLAGS) lint-recursive lint-am: Makefile @MAINTAINER_MODE_TRUE@ $(top_srcdir)/Makefile.rules -.PHONY: lint lint-recursive lint-am +.PHONY: lint lint-am