r2158: *** empty log message ***
[clsql.git] / make-upstream.sh
index 568fe2aa619a706327310ab5579a753fe0e9c5c1..1bc4fb9158a01c28bdbbc7e70369eb5e6c8d6c92 100755 (executable)
@@ -14,10 +14,13 @@ Creates upstream archives
 Options:
   -c   Commit and tag CVS tree with current version numbers
   -t   Tag CVS tree with current version numbers
+  -f   Force creation of upstream archive, even if exists'
   -h   Print this brief help
 EOF
 }
 
+opt_force=0
+
 # Command line
 while [ $# != 0 ]; do
     value="`echo x\"$1\" | sed -e 's/^x-.//'`"
@@ -25,6 +28,7 @@ while [ $# != 0 ]; do
         -h)  usage; exit 0           ;;
         -c)  opt_commit=1; opt_tag=1 ;;
         -t)  opt_tag=1               ;;
+       -f)  opt_force=1             ;;
          *)  usage; exit 0           ;;
     esac
     shift
@@ -72,10 +76,11 @@ cp -a ${TOPDIR} ${DISTDIR}
 
 echo "Cleaning distribution directory ${DISTDIR}"
 cd ${DISTDIR}
-rm -f upload.sh make-debian.sh make-upstream.sh cvsbp-prepare.sh 
-rm -f test-suite/test.config
+make distclean
+rm -f upload.sh make-debian.sh make-upstream.sh cvsbp-prepare.sh test-suite/test.config
+rm -f 
 rm -f `find . -type f -name .cvsignore`
-rm -rf `find . -type d -name CVS`
+rm -rf `find . -type d -name CVS -or -name .bin`
 rm -f `find . -type f -name '*~' -or -name '.#*'  -or -name '#*#' -or -name ".*~"`
 rm -f `find doc -type f -name \*.tex -or -name \*.aux -or \
   -name \*.log -or -name \*.out -or -name \*.dvi`