diff --git a/test/hello/Makefile b/test/hello/Makefile index b961605f..1a73ff34 100644 --- a/test/hello/Makefile +++ b/test/hello/Makefile @@ -1,6 +1,6 @@ BASEDIR=../.. INCDIR=$(BASEDIR)/include -MODDIR=$(BASEDIR)/modules/ +MODDIR=$(INSTALLDIR)/modules/ include $(INCDIR)/Make.inc.psblas # # Libraries used @@ -29,7 +29,8 @@ pingpong: pingpong.o clean: - /bin/rm -f hello.o pingpong.o $(EXEDIR) + /bin/rm -f hello.o pingpong.o + $(EXEDIR)/hello verycleanlib: (cd ../..; make veryclean) lib: diff --git a/test/kernel/Makefile b/test/kernel/Makefile index 7c20caaf..453bcd26 100644 --- a/test/kernel/Makefile +++ b/test/kernel/Makefile @@ -36,7 +36,7 @@ s_file_spmv: $(STOBJS) clean: - /bin/rm -f $(DBOBJSS) $(DBOBJS) $(DTOBJS) $(STOBJS) $(EXEDIR) + /bin/rm -f $(DBOBJSS) $(DBOBJS) $(DTOBJS) $(STOBJS) lib: (cd ../../; make library)