diff options
author | Matt Wilson <msw@redhat.com> | 1999-05-03 21:08:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-05-03 21:08:54 +0000 |
commit | 663a64b69379647e24bd23faf3bed61d683b4133 (patch) | |
tree | 76e3f04ea86a27ba9659584aba62f8fb2b35b675 /Makefile | |
parent | 6c0a6bd2cdf0f5efaaa54fa3ae5e8dcbfd105ba7 (diff) | |
download | anaconda-663a64b69379647e24bd23faf3bed61d683b4133.tar.gz anaconda-663a64b69379647e24bd23faf3bed61d683b4133.tar.xz anaconda-663a64b69379647e24bd23faf3bed61d683b4133.zip |
Toplevel makefile for anaconda
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..f9c02f4c7 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +SUBDIRS = rpmmodule isys balkan loader + +DESTDIR = ../../../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" + +subdirs: + for d in $(SUBDIRS); do \ + (cd $$d; $(MAKE)) \ + || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;\ + done && test -z "$$fail" + +install: all + mkdir -p $(DESTDIR) + cp -a anaconda comps.py gui.py image.py text.py $(DESTDIR)
\ No newline at end of file |