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/psyent | |
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/psyent')
-rw-r--r-- | board/psyent/pci5441/Makefile | 6 | ||||
-rw-r--r-- | board/psyent/pk1c20/Makefile | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/board/psyent/pci5441/Makefile b/board/psyent/pci5441/Makefile index 1cfe9e5c2ab..24b8d7d26c7 100644 --- a/board/psyent/pci5441/Makefile +++ b/board/psyent/pci5441/Makefile @@ -39,12 +39,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/psyent/pk1c20/Makefile b/board/psyent/pk1c20/Makefile index 4677809f511..32530f82e14 100644 --- a/board/psyent/pk1c20/Makefile +++ b/board/psyent/pk1c20/Makefile @@ -39,12 +39,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 |