[BACK]Return to cleanForDist CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx

Annotation of OpenXM/src/kan96xx/cleanForDist, Revision 1.1.1.1

1.1       maekawa     1: #!/bin/csh
                      2: if ( `pwd` != "/home/nobuki/openXM/src/kan96xx" ) then
                      3:     echo "Invalid directory to run cleanForDist"
                      4:     exit
                      5: endif
                      6:
                      7: cd Kan
                      8: mv Makefile Makefile.t
                      9: sed 's/CFLAGS = -g/CFLAGS = -O/g' Makefile.t >Makefile
                     10: mv Makefile Makefile.t
                     11: sed -f clean0.sed Makefile.t >Makefile
                     12: /bin/rm Makefile.t
                     13: make clean
                     14: /bin/rm -f *.a
                     15: cd ..
                     16:
                     17: cd gmp
                     18: make distclean
                     19: /bin/rm -f *.a
                     20: cd ..
                     21:
                     22: cd gc
                     23: make clean
                     24: /bin/rm -f *.a
                     25: cd ..
                     26:
                     27: cd Doc
                     28: make clean
                     29: /bin/rm -f bench1.sm1
                     30: /bin/rm -fr checkData
                     31: cd ..
                     32:
                     33: cd plugin
                     34: make clean
                     35: cd ..
                     36:
                     37: /bin/rm -rf test
                     38: /bin/rm -rf makeDist
                     39: /bin/rm -rf develop
                     40: /bin/rm -rf FAQ/*~ *~ Doc.1 Examples Info Kan-ps Samples Sm TestData kan-mathematica mails  Kan/Test Kan.old Kan/debug
                     41:
                     42:
                     43:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>