summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-03-28 17:06:39 +0000
committerErik Troan <ewt@redhat.com>2000-03-28 17:06:39 +0000
commit2bb1eb252c7833d96bd0b40eccaf746ffde72b3b (patch)
treecb28b971277a20cf1886ba2b12baa750cbf3b02e /Makefile
parent2e972692581935f351c40fa2c979ca773bc7aaf9 (diff)
downloadanaconda-2bb1eb252c7833d96bd0b40eccaf746ffde72b3b.tar.gz
anaconda-2bb1eb252c7833d96bd0b40eccaf746ffde72b3b.tar.xz
anaconda-2bb1eb252c7833d96bd0b40eccaf746ffde72b3b.zip
removed pump
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cd9ec1ce2..d92816d27 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,6 @@ ARCH := $(patsubst sparc%,sparc,$(ARCH))
SUBDIRSHD = rpmmodule balkan isys libfdisk collage loader po \
minislang textw utils
-BUILDONLYSUBDIRS = pump
SUBDIRS = $(SUBDIRSHD)
ifneq (ia64, $(ARCH))
@@ -24,7 +23,6 @@ endif
DESTDIR = ../../../RedHat/instimage
CATALOGS = po/anaconda.pot
-ALLSUBDIRS = $(BUILDONLYSUBDIRS) $(SUBDIRS)
PYFILES = $(wildcard *.py)
@@ -40,10 +38,10 @@ xmouse.so: xmouse.c
clean:
rm -f *.o *.so *.pyc
- for d in $(ALLSUBDIRS); do make -C $$d clean; done
+ for d in $(SUBDIRS); do make -C $$d clean; done
subdirs:
- for d in $(ALLSUBDIRS); do make -C $$d; done
+ for d in $(SUBDIRS); do make -C $$d; done
install:
@if [ "$(DESTDIR)" = "" ]; then \