summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index caea62fb0..e5f78040b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,18 @@
SUBDIRS = rpmmodule isys balkan loader po libfdisk collage
+BUILDONLYSUBDIRS = pump
+
TOPDIR = ../../..
DESTDIR = $(TOPDIR)/RedHat/instimage/usr/bin
CATALOGS = po/anaconda-text.pot
+ALLSUBDIRS = $(SUBDIRS) $(BUILDONLYSUBDIRS)
all: subdirs $(CATALOGS)
clean:
- for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done
+ for d in $(ALLSUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done
subdirs:
- for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d; done
+ for d in $(ALLSUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d; done
install: all
mkdir -p $(DESTDIR)