summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f9c02f4c77a928cdbbad27e5800982ea97f80f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)