From dee92a2d222d0ebe49a9ddf8c409cbc2431c945b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 12 Jan 2001 09:16:13 +0000 Subject: When doing a 'make clean', clean all subdirs, not just the current arch. --- libc/sysdeps/linux/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/Makefile') diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile index fb7808913..a8491980f 100644 --- a/libc/sysdeps/linux/Makefile +++ b/libc/sysdeps/linux/Makefile @@ -24,6 +24,7 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak DIRS = $(TARGET_ARCH) common +ALL_SUBDIRS = $(shell find * -type d -prune -name [a-z]\*) all: libc.a @@ -35,12 +36,12 @@ tags: clean: subdirs_clean subdirs: $(patsubst %, _dir_%, $(DIRS)) -subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS)) +subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) $(patsubst %, _dir_%, $(DIRS)) : dummy $(MAKE) -C $(patsubst _dir_%, %, $@) -$(patsubst %, _dirclean_%, $(DIRS)) : dummy +$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean -- cgit v1.2.3