summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile21
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