diff options
author | Mike Frysinger | 2011-10-13 06:54:57 +0000 |
---|---|---|
committer | Wolfgang Denk | 2011-10-15 22:20:36 +0200 |
commit | 464c79207c89f247f97b344495924eabb0c9738e (patch) | |
tree | 8e0710704d87a36e331b6afa1913d5e8356262c2 /board/gdsys | |
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/gdsys')
-rw-r--r-- | board/gdsys/405ep/Makefile | 6 | ||||
-rw-r--r-- | board/gdsys/common/Makefile | 6 | ||||
-rw-r--r-- | board/gdsys/dlvision/Makefile | 6 | ||||
-rw-r--r-- | board/gdsys/gdppc440etx/Makefile | 6 | ||||
-rw-r--r-- | board/gdsys/intip/Makefile | 6 | ||||
-rw-r--r-- | board/gdsys/neo/Makefile | 6 |
6 files changed, 0 insertions, 36 deletions
diff --git a/board/gdsys/405ep/Makefile b/board/gdsys/405ep/Makefile index 169418c288e..feb5cecf0b2 100644 --- a/board/gdsys/405ep/Makefile +++ b/board/gdsys/405ep/Makefile @@ -39,12 +39,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS) $(SOBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/gdsys/common/Makefile b/board/gdsys/common/Makefile index 4c7fc99f0ce..2868cc8bdd4 100644 --- a/board/gdsys/common/Makefile +++ b/board/gdsys/common/Makefile @@ -43,12 +43,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS) $(SOBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/gdsys/dlvision/Makefile b/board/gdsys/dlvision/Makefile index 1c3dadb3063..dc5b5b887ab 100644 --- a/board/gdsys/dlvision/Makefile +++ b/board/gdsys/dlvision/Makefile @@ -35,12 +35,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS) $(SOBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/gdsys/gdppc440etx/Makefile b/board/gdsys/gdppc440etx/Makefile index 5b0ffc29209..905ca7a47b5 100644 --- a/board/gdsys/gdppc440etx/Makefile +++ b/board/gdsys/gdppc440etx/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/gdsys/intip/Makefile b/board/gdsys/intip/Makefile index 4d87ea9a786..d2c9dd49b67 100644 --- a/board/gdsys/intip/Makefile +++ b/board/gdsys/intip/Makefile @@ -39,12 +39,6 @@ all: $(LIB) $(SOBJS) $(LIB): $(OBJS) $(call cmd_link_o_target, $^) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target diff --git a/board/gdsys/neo/Makefile b/board/gdsys/neo/Makefile index 1c3dadb3063..dc5b5b887ab 100644 --- a/board/gdsys/neo/Makefile +++ b/board/gdsys/neo/Makefile @@ -35,12 +35,6 @@ SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) $(call cmd_link_o_target, $(OBJS) $(SOBJS)) -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - ######################################################################### # defines $(obj).depend target |