From 1d468e5cf63ac7dd378cf5fa7d37ed22fbdce5f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Wed, 17 Jul 2024 10:00:22 +0200 Subject: [PATCH] fix: /bin/rm -> rm --- .../meschach_lib/MACHINES/Cray/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/GCC/makefile | 12 +++++------ .../meschach_lib/MACHINES/Linux/makefile | 14 ++++++------- .../meschach_lib/MACHINES/MicroSoft/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/OS2/makefile | 8 ++++---- .../meschach_lib/MACHINES/RS6000/makefile | 14 ++++++------- .../meschach_lib/MACHINES/SGI/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/SPARC/makefile | 12 +++++------ cuda/leukocyte/meschach_lib/makefile | 14 ++++++------- cuda/leukocyte/meschach_lib/makefile.in | 20 +++++++++---------- .../meschach_lib/MACHINES/Cray/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/GCC/makefile | 12 +++++------ .../meschach_lib/MACHINES/Linux/makefile | 14 ++++++------- .../meschach_lib/MACHINES/MicroSoft/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/OS2/makefile | 8 ++++---- .../meschach_lib/MACHINES/RS6000/makefile | 14 ++++++------- .../meschach_lib/MACHINES/SGI/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/SPARC/makefile | 12 +++++------ opencl/leukocyte/meschach_lib/makefile | 14 ++++++------- opencl/leukocyte/meschach_lib/makefile.in | 20 +++++++++---------- .../meschach_lib/MACHINES/Cray/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/GCC/makefile | 12 +++++------ .../meschach_lib/MACHINES/Linux/makefile | 14 ++++++------- .../meschach_lib/MACHINES/MicroSoft/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/OS2/makefile | 8 ++++---- .../meschach_lib/MACHINES/RS6000/makefile | 14 ++++++------- .../meschach_lib/MACHINES/SGI/makefile | 20 +++++++++---------- .../meschach_lib/MACHINES/SPARC/makefile | 12 +++++------ openmp/leukocyte/meschach_lib/makefile | 14 ++++++------- openmp/leukocyte/meschach_lib/makefile.in | 20 +++++++++---------- 30 files changed, 231 insertions(+), 231 deletions(-) diff --git a/cuda/leukocyte/meschach_lib/MACHINES/Cray/makefile b/cuda/leukocyte/meschach_lib/MACHINES/Cray/makefile index d12d7f2..4364fe0 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/Cray/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/Cray/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/MACHINES/GCC/makefile b/cuda/leukocyte/meschach_lib/MACHINES/GCC/makefile index b8860f0..f30bf64 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/GCC/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/GCC/makefile @@ -101,7 +101,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -124,7 +124,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -133,7 +133,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -149,10 +149,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/MACHINES/Linux/makefile b/cuda/leukocyte/meschach_lib/MACHINES/Linux/makefile index 6e8de4e..7e680e1 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/Linux/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/Linux/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -125,7 +125,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -151,7 +151,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -162,10 +162,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile b/cuda/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile index 6be89d4..bc9d516 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,16 +172,16 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def - /bin/rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ itertort.exe mfuntort.exe iotort.exe - /bin/rm -f maxint.exe macheps.exe + rm -f maxint.exe macheps.exe alltorture: torture sptort ztorture memtort itertort mfuntort iotort torture:torture.o libmeschach.a diff --git a/cuda/leukocyte/meschach_lib/MACHINES/OS2/makefile b/cuda/leukocyte/meschach_lib/MACHINES/OS2/makefile index 09498e8..d503acc 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/OS2/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/OS2/makefile @@ -111,7 +111,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -143,7 +143,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` diff --git a/cuda/leukocyte/meschach_lib/MACHINES/RS6000/makefile b/cuda/leukocyte/meschach_lib/MACHINES/RS6000/makefile index 1398df9..6723d2c 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/RS6000/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/RS6000/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/MACHINES/SGI/makefile b/cuda/leukocyte/meschach_lib/MACHINES/SGI/makefile index f0a3b16..034f8a4 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/SGI/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/SGI/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/MACHINES/SPARC/makefile b/cuda/leukocyte/meschach_lib/MACHINES/SPARC/makefile index 71b0c9c..62160b4 100755 --- a/cuda/leukocyte/meschach_lib/MACHINES/SPARC/makefile +++ b/cuda/leukocyte/meschach_lib/MACHINES/SPARC/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -112,7 +112,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -132,7 +132,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -148,10 +148,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/makefile b/cuda/leukocyte/meschach_lib/makefile index 08bf06e..efb8913 100755 --- a/cuda/leukocyte/meschach_lib/makefile +++ b/cuda/leukocyte/meschach_lib/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/cuda/leukocyte/meschach_lib/makefile.in b/cuda/leukocyte/meschach_lib/makefile.in index 0c1e496..93ea6ef 100755 --- a/cuda/leukocyte/meschach_lib/makefile.in +++ b/cuda/leukocyte/meschach_lib/makefile.in @@ -109,7 +109,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -122,7 +122,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -144,7 +144,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -160,7 +160,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -171,15 +171,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/Cray/makefile b/opencl/leukocyte/meschach_lib/MACHINES/Cray/makefile index d12d7f2..4364fe0 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/Cray/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/Cray/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/GCC/makefile b/opencl/leukocyte/meschach_lib/MACHINES/GCC/makefile index b8860f0..f30bf64 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/GCC/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/GCC/makefile @@ -101,7 +101,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -124,7 +124,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -133,7 +133,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -149,10 +149,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/Linux/makefile b/opencl/leukocyte/meschach_lib/MACHINES/Linux/makefile index 6e8de4e..7e680e1 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/Linux/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/Linux/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -125,7 +125,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -151,7 +151,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -162,10 +162,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile b/opencl/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile index 6be89d4..bc9d516 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,16 +172,16 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def - /bin/rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ itertort.exe mfuntort.exe iotort.exe - /bin/rm -f maxint.exe macheps.exe + rm -f maxint.exe macheps.exe alltorture: torture sptort ztorture memtort itertort mfuntort iotort torture:torture.o libmeschach.a diff --git a/opencl/leukocyte/meschach_lib/MACHINES/OS2/makefile b/opencl/leukocyte/meschach_lib/MACHINES/OS2/makefile index 09498e8..d503acc 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/OS2/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/OS2/makefile @@ -111,7 +111,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -143,7 +143,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` diff --git a/opencl/leukocyte/meschach_lib/MACHINES/RS6000/makefile b/opencl/leukocyte/meschach_lib/MACHINES/RS6000/makefile index 1398df9..6723d2c 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/RS6000/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/RS6000/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/SGI/makefile b/opencl/leukocyte/meschach_lib/MACHINES/SGI/makefile index f0a3b16..034f8a4 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/SGI/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/SGI/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/MACHINES/SPARC/makefile b/opencl/leukocyte/meschach_lib/MACHINES/SPARC/makefile index 71b0c9c..62160b4 100755 --- a/opencl/leukocyte/meschach_lib/MACHINES/SPARC/makefile +++ b/opencl/leukocyte/meschach_lib/MACHINES/SPARC/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -112,7 +112,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -132,7 +132,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -148,10 +148,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/makefile b/opencl/leukocyte/meschach_lib/makefile index 08bf06e..efb8913 100755 --- a/opencl/leukocyte/meschach_lib/makefile +++ b/opencl/leukocyte/meschach_lib/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/opencl/leukocyte/meschach_lib/makefile.in b/opencl/leukocyte/meschach_lib/makefile.in index 0c1e496..93ea6ef 100755 --- a/opencl/leukocyte/meschach_lib/makefile.in +++ b/opencl/leukocyte/meschach_lib/makefile.in @@ -109,7 +109,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -122,7 +122,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -144,7 +144,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -160,7 +160,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -171,15 +171,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/Cray/makefile b/openmp/leukocyte/meschach_lib/MACHINES/Cray/makefile index d12d7f2..4364fe0 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/Cray/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/Cray/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/GCC/makefile b/openmp/leukocyte/meschach_lib/MACHINES/GCC/makefile index b8860f0..f30bf64 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/GCC/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/GCC/makefile @@ -101,7 +101,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -124,7 +124,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -133,7 +133,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -149,10 +149,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/Linux/makefile b/openmp/leukocyte/meschach_lib/MACHINES/Linux/makefile index 6e8de4e..7e680e1 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/Linux/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/Linux/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -113,7 +113,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -125,7 +125,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -151,7 +151,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -162,10 +162,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile b/openmp/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile index 6be89d4..bc9d516 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/MicroSoft/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,16 +172,16 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def - /bin/rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ + rm -f *.o core asx5213a.mat iotort.dat *.a *.dll *.def + rm -f torture.exe sptort.exe ztorture.exe memtort.exe \ itertort.exe mfuntort.exe iotort.exe - /bin/rm -f maxint.exe macheps.exe + rm -f maxint.exe macheps.exe alltorture: torture sptort ztorture memtort itertort mfuntort iotort torture:torture.o libmeschach.a diff --git a/openmp/leukocyte/meschach_lib/MACHINES/OS2/makefile b/openmp/leukocyte/meschach_lib/MACHINES/OS2/makefile index 09498e8..d503acc 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/OS2/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/OS2/makefile @@ -111,7 +111,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -143,7 +143,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` diff --git a/openmp/leukocyte/meschach_lib/MACHINES/RS6000/makefile b/openmp/leukocyte/meschach_lib/MACHINES/RS6000/makefile index 1398df9..6723d2c 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/RS6000/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/RS6000/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/SGI/makefile b/openmp/leukocyte/meschach_lib/MACHINES/SGI/makefile index f0a3b16..034f8a4 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/SGI/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/SGI/makefile @@ -110,7 +110,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -135,7 +135,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -145,7 +145,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -161,7 +161,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -172,15 +172,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/MACHINES/SPARC/makefile b/openmp/leukocyte/meschach_lib/MACHINES/SPARC/makefile index 71b0c9c..62160b4 100755 --- a/openmp/leukocyte/meschach_lib/MACHINES/SPARC/makefile +++ b/openmp/leukocyte/meschach_lib/MACHINES/SPARC/makefile @@ -100,7 +100,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -112,7 +112,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -123,7 +123,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -132,7 +132,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -148,10 +148,10 @@ shar: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/makefile b/openmp/leukocyte/meschach_lib/makefile index 08bf06e..efb8913 100755 --- a/openmp/leukocyte/meschach_lib/makefile +++ b/openmp/leukocyte/meschach_lib/makefile @@ -102,7 +102,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -115,7 +115,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -127,7 +127,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -137,7 +137,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -153,7 +153,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -164,10 +164,10 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a alltorture: torture sptort ztorture memtort itertort mfuntort iotort diff --git a/openmp/leukocyte/meschach_lib/makefile.in b/openmp/leukocyte/meschach_lib/makefile.in index 0c1e496..93ea6ef 100755 --- a/openmp/leukocyte/meschach_lib/makefile.in +++ b/openmp/leukocyte/meschach_lib/makefile.in @@ -109,7 +109,7 @@ oldpart: $(OLDLIST) ####################################### tar: - - /bin/rm -f $(MES_PAK).tar + - rm -f $(MES_PAK).tar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -122,7 +122,7 @@ tar: # use this only for PC machines msdos-zip: - - /bin/rm -f $(MES_PAK).zip + - rm -f $(MES_PAK).zip chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -134,7 +134,7 @@ msdos-zip: fullshar: - - /bin/rm -f $(MES_PAK).shar; + - rm -f $(MES_PAK).shar; chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` chmod 755 configure @@ -144,7 +144,7 @@ fullshar: MACHINES DOC > $(MES_PAK).shar shar: - - /bin/rm -f meschach1.shar meschach2.shar meschach3.shar \ + - rm -f meschach1.shar meschach2.shar meschach3.shar \ meschach4.shar oldmeschach.shar meschach0.shar chmod 644 `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ $(OTHERS) $(HLIST) `echo $(TORTURE) | sed -e 's/\.o/.c/g'` @@ -160,7 +160,7 @@ shar: $(HLIST) DOC MACHINES > meschach0.shar list: - /bin/rm -f $(FLIST) + rm -f $(FLIST) ls -lR `echo $(ALL_LISTS) | sed -e 's/\.o/.c/g'` \ `echo $(TORTURE) | sed -e 's/\.o/.c/g'` \ $(HLIST) $(OTHERS) MACHINES DOC \ @@ -171,15 +171,15 @@ list: clean: - /bin/rm -f *.o core asx5213a.mat iotort.dat + rm -f *.o core asx5213a.mat iotort.dat cleanup: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f *.o core asx5213a.mat iotort.dat *.a realclean: - /bin/rm -f *.o core asx5213a.mat iotort.dat *.a - /bin/rm -f torture sptort ztorture memtort itertort mfuntort iotort - /bin/rm -f makefile machine.h config.status maxint macheps + rm -f *.o core asx5213a.mat iotort.dat *.a + rm -f torture sptort ztorture memtort itertort mfuntort iotort + rm -f makefile machine.h config.status maxint macheps alltorture: torture sptort ztorture memtort itertort mfuntort iotort -- 2.45.1