diff options
author | Matt Wilson <msw@redhat.com> | 1999-05-03 21:17:29 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-05-03 21:17:29 +0000 |
commit | ce48b768c0c94e90025ea29d513909c5d9d9edc4 (patch) | |
tree | 7f2c2861efb8836f9faba2283197f60ce9aeb4e0 /Makefile | |
parent | 0326f77c860cf57068cde4ad365451e7adbef268 (diff) | |
download | anaconda-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-- | Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -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) |