]> git.sesse.net Git - vlc/blob - bindings/cil/autogen.sh
libvlcpp: add some functions for Video.
[vlc] / bindings / cil / autogen.sh
1 #!/bin/sh
2 # SVN package rebuild script
3 # $Id$
4 #
5 # ***********************************************************************
6 # *  Copyright © 2002-2005 Rémi Denis-Courmont.                         *
7 # *  This program is free software; you can redistribute and/or modify  *
8 # *  it under the terms of the GNU General Public License as published  *
9 # *  by the Free Software Foundation; version 2 of the license.         *
10 # *                                                                     *
11 # *  This program is distributed in the hope that it will be useful,    *
12 # *  but WITHOUT ANY WARRANTY; without even the implied warranty of     *
13 # *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               *
14 # *  See the GNU General Public License for more details.               *
15 # *                                                                     *
16 # *  You should have received a copy of the GNU General Public License  *
17 # *  along with this program; if not, you can get it from:              *
18 # *  http://www.gnu.org/copyleft/gpl.html                               *
19 # ***********************************************************************
20
21 set -xe
22
23 cd "$(dirname "$0")"
24
25 test -f src/exception.cs || {
26         echo "You must run this script from your cil directory.">&2
27         exit 1
28 }
29
30 mkdir -p admin
31 autoreconf -sfi
32
33 set +x
34 echo ""
35 echo "Type \`./configure' to configure the package for your system"
36 echo "(type \`./configure -- help' for help)."
37 echo "Then you can use the usual \`make', \`make install', etc."
38