updated changelog
[mdictionary] / autogen.sh
1 #!/bin/bash
2
3 rm -rf compile config.sub config.guess depcomp install-sh ltmain.sh missing aclocal.m4  autom4te.cache/ Makefile.in configure
4 rm config.log config.status libtool Makefile
5
6 if [ "_""$1" != "_nogen" ] 
7 then            
8         aclocal ; libtoolize ; autoconf ; automake --add-missing ; automake
9 fi
10
11 cd src/dbus_wrapper     
12 ./autogen.sh "$1"
13 cd ../gui
14 ./autogen.sh "$1"
15 cd ../bookmarks/bdb
16 ./autogen.sh "$1"
17 cd ../../manager  
18 ./autogen.sh "$1"
19 cd ../plugins/xdxf
20 ./autogen.sh "$1"
21 cd ../stardict
22 ./autogen.sh "$1"
23