diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-13 06:54:57 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-15 22:20:36 +0200 |
commit | 464c79207c89f247f97b344495924eabb0c9738e (patch) | |
tree | 8e0710704d87a36e331b6afa1913d5e8356262c2 /board/xes | |
parent | fa28bd2eef588ec2048ccafedb2b384d5a355858 (diff) |
punt unused clean/distclean targets
The top level Makefile does not do any recursion into subdirs when
cleaning, so these clean/distclean targets in random arch/board dirs
never get used. Punt them all.
MAKEALL didn't report any errors related to this that I could see.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/xes')
-rw-r--r-- | board/xes/common/Makefile | 6 | ||||
-rw-r--r-- | board/xes/xpedite1000/Makefile | 6 | ||||
-rw-r--r-- | board/xes/xpedite517x/Makefile | 6 | ||||
-rw-r--r-- | board/xes/xpedite520x/Makefile | 6 | ||||
-rw-r--r-- | board/xes/xpedite537x/Makefile | 6 | ||||
-rw-r--r-- | board/xes/xpedite550x/Makefile | 6 |
6 files changed, 0 insertions, 36 deletions
diff --git a/board/xes/common/Makefile b/board/xes/common/Makefile index 39d105fcdd0..30871a9a553 100644 --- a/board/xes/common/Makefile +++ b/board/xes/common/Makefile @@ -44,12 +44,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(obj).depend $(OBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/xes/xpedite1000/Makefile b/board/xes/xpedite1000/Makefile index 5b0ffc29209..905ca7a47b5 100644 --- a/board/xes/xpedite1000/Makefile +++ b/board/xes/xpedite1000/Makefile @@ -35,12 +35,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/xes/xpedite517x/Makefile b/board/xes/xpedite517x/Makefile index cac32e93d20..2c7301d8700 100644 --- a/board/xes/xpedite517x/Makefile +++ b/board/xes/xpedite517x/Makefile @@ -36,12 +36,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS-y)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(OBJS) $(SOBJS) - -distclean: clean - rm -f $(LIB) core *.bak .depend - ######################################################################### # defines $(obj).depend target diff --git a/board/xes/xpedite520x/Makefile b/board/xes/xpedite520x/Makefile index a774816189f..496012b59f7 100644 --- a/board/xes/xpedite520x/Makefile +++ b/board/xes/xpedite520x/Makefile @@ -39,12 +39,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS-y)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(OBJS) $(SOBJS) - -distclean: clean - rm -f $(LIB) core *.bak .depend - ######################################################################### # defines $(obj).depend target diff --git a/board/xes/xpedite537x/Makefile b/board/xes/xpedite537x/Makefile index 86138f99e91..6b8d5a25ca1 100644 --- a/board/xes/xpedite537x/Makefile +++ b/board/xes/xpedite537x/Makefile @@ -29,12 +29,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS-y)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(OBJS) $(SOBJS) - -distclean: clean - rm -f $(LIB) core *.bak .depend - ######################################################################### # defines $(obj).depend target diff --git a/board/xes/xpedite550x/Makefile b/board/xes/xpedite550x/Makefile index 7bc224c4495..bafa753775b 100644 --- a/board/xes/xpedite550x/Makefile +++ b/board/xes/xpedite550x/Makefile @@ -23,12 +23,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS-y)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS)) -clean: - rm -f $(OBJS) $(SOBJS) - -distclean: clean - rm -f $(LIB) core *.bak .depend - ######################################################################### # defines $(obj).depend target |