diff options
author | Erik Troan <ewt@redhat.com> | 2000-03-27 20:21:54 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-03-27 20:21:54 +0000 |
commit | 49e006c1f421b8f1733016d59234c72b0cab9178 (patch) | |
tree | 670561c0358e7d379a80e351ec564b8d5c6b6374 /isys/Makefile | |
parent | 16bdc79f3214377d39a6f1a221fee1cc5a83fd49 (diff) | |
download | anaconda-49e006c1f421b8f1733016d59234c72b0cab9178.tar.gz anaconda-49e006c1f421b8f1733016d59234c72b0cab9178.tar.xz anaconda-49e006c1f421b8f1733016d59234c72b0cab9178.zip |
install rule wasn't installing enough
removed weird topdir stuff
removed unneeded recfg stuff
Diffstat (limited to 'isys/Makefile')
-rw-r--r-- | isys/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isys/Makefile b/isys/Makefile index 43e461735..f5e167c74 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -33,10 +33,10 @@ libisys.a: libisys.a($(OBJECTS) $(STATICOBJS)) clean: rm -f *.o *.so *.a *.pyc $(TARGET) $(OBJECTS) - for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done + for d in $(SUBDIRS); do make -C $$d clean; done install: all install $(PYMODULES) isys.py $(DESTDIR)/$(PYTHONLIBDIR) subdirs: - for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d; done + for d in $(SUBDIRS); do make -C $$d; done |