summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-05-03 21:17:29 +0000
committerMatt Wilson <msw@redhat.com>1999-05-03 21:17:29 +0000
commitce48b768c0c94e90025ea29d513909c5d9d9edc4 (patch)
tree7f2c2861efb8836f9faba2283197f60ce9aeb4e0 /Makefile
parent0326f77c860cf57068cde4ad365451e7adbef268 (diff)
downloadanaconda-ce48b768c0c94e90025ea29d513909c5d9d9edc4.tar.gz
anaconda-ce48b768c0c94e90025ea29d513909c5d9d9edc4.tar.xz
anaconda-ce48b768c0c94e90025ea29d513909c5d9d9edc4.zip
this looks more sane for a subdir target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index e9b611f27..1915ad5c2 100644
--- a/Makefile
+++ b/Makefile
@@ -5,16 +5,10 @@ DESTDIR = $TOPDIR/RedHat/instimage/usr/bin
all: subdirs
clean:
- for d in $(SUBDIRS); do \
- (cd $$d; $(MAKE) clean) \
- || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;\
- done && test -z "$$fail"
+ for d in $(SUBDIRS); do make -C $$d clean; done
subdirs:
- for d in $(SUBDIRS); do \
- (cd $$d; $(MAKE) TOPDIR=../$(TOPDIR)) \
- || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;\
- done && test -z "$$fail"
+ for d in $(SUBDIRS); do make -C $$d; done
install: all
mkdir -p $(DESTDIR)