Skip to content
Snippets Groups Projects
Commit 3275929f authored by Forget Julien's avatar Forget Julien
Browse files

Cleanup, preparing new release.


git-svn-id: https://svn.onera.fr/Prelude/Prelude/trunk@896 49f62630-d767-4ccd-930e-b3f5589f52e1
parent 383abb9e
Branches
Tags
No related merge requests found
...@@ -24,12 +24,13 @@ Prelude releases should be done with the following steps: ...@@ -24,12 +24,13 @@ Prelude releases should be done with the following steps:
Build prelude from your pristine source tree Build prelude from your pristine source tree
svn co https://svn.onera.fr/Prelude/Prelude/trunk prelude-1.6.0 svn co https://svn.onera.fr/Prelude/Prelude/trunk prelude-1.6.0
5) (optional) do any testing you usually do, at least check compilation:
cd prelude-1.6.0 cd prelude-1.6.0
autoconf autoconf
./configure ./configure
make make
5) (optional) do any testing you usually do.
6) Tag prelude tree with appropriate version 6) Tag prelude tree with appropriate version
...@@ -39,7 +40,6 @@ Prelude releases should be done with the following steps: ...@@ -39,7 +40,6 @@ Prelude releases should be done with the following steps:
svn export . $HOME/tmp/prelude-1.6.0 svn export . $HOME/tmp/prelude-1.6.0
cd $HOME/tmp/prelude-1.6.0 cd $HOME/tmp/prelude-1.6.0
autoconf
cd .. cd ..
tar zcvf prelude-1.6.0-src.tgz prelude-1.6.0 tar zcvf prelude-1.6.0-src.tgz prelude-1.6.0
......
...@@ -24,8 +24,7 @@ ...@@ -24,8 +24,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
define([svnversion], esyscmd([sh -c "svnversion|sed "s/:.*//"|tr -d '\n'"]))dnl define([svnversion], esyscmd([sh -c "svnversion|sed "s/:.*//"|tr -d '\n'"]))dnl
AC_PREREQ(2.59) AC_PREREQ(2.59)
#AC_INIT([Prelude], [1.6.svn-svnversion], [julien.forget@cristal.univ-lille.fr]) AC_INIT([Prelude], [1.7.0], [julien.forget@cristal.univ-lille.fr])
AC_INIT([Prelude], [1.6.1], [julien.forget@cristal.univ-lille.fr])
AC_CONFIG_SRCDIR([src/main.ml]) AC_CONFIG_SRCDIR([src/main.ml])
# default prefix is /usr/local # default prefix is /usr/local
......
v1.7
- Code generation for the AER multi-phase task model
- Constants
- Wrapper for execution with Linux+ptask
- many optimizations and bugfixes
v1.6
#!/bin/bash
# Execute in a freshly checked out Prelude svn to avoid garbage to come with.
VERSION=`grep Version _oasis | sed "s/Version:[' ']*//"`
DISTRIB_DIR=prelude-$VERSION-src
mkdir -p $DISTRIB_DIR
cp -r * $DISTRIB_DIR
rm -rf $DISTRIB_DIR/$DISTRIB_DIR # yeah, well...
rm $DISTRIB_DIR/svnignore $DISTRIB_DIR/source-distrib.sh $DISTRIB_DIR/distrib.sh
tar -cf $DISTRIB_DIR.tgz --exclude-vcs -z -v $DISTRIB_DIR
*.cmx
*.cmo
*.cmi
*.annot
*.tgz
*.output
lexer.ml
parser.mli
parser.ml
preludec.opt
preludec
prelude-*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment