summaryrefslogtreecommitdiffstats
path: root/isys/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'isys/Makefile')
-rw-r--r--isys/Makefile4
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