summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-07 19:20:38 +0000
committerErik Troan <ewt@redhat.com>1999-08-07 19:20:38 +0000
commit7963950fccc64cb4e50505a967df0b05f7f2950a (patch)
treef9f5bf8f366145236db18aac244035440be533ad
parentd70fde98dbe442c779d7fc72a9bb56c72140dc58 (diff)
downloadanaconda-7963950fccc64cb4e50505a967df0b05f7f2950a.tar.gz
anaconda-7963950fccc64cb4e50505a967df0b05f7f2950a.tar.xz
anaconda-7963950fccc64cb4e50505a967df0b05f7f2950a.zip
added pump
-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)