OSDN Git Service

* Fixed Bug.
[modchxj/mod_chxj.git] / buildconf.sh
1 #!/bin/sh
2 # autogen.sh - generates configure using the autotools
3 # $Id$
4 #export WANT_AUTOCONF=2.5
5 #libtoolize --force --copy
6 rm -f ./aclocal.m4
7 rm -f ./Makefile
8 rm -f ./Makefile.in
9 rm -f ./configure
10 rm -f ./config.guess
11 rm -f ./config.log
12 rm -f ./config.sub
13 rm -f ./config.status
14 rm -f ./install-sh
15 #rm -f ./libtool
16 #rm -f ./ltmain.sh
17 rm -f ./missing
18 rm -f ./mkinstalldirs
19 aclocal 
20 autoheader
21 automake -a -c 
22 #automake 
23 autoconf
24 rm -rf autom4te.cache
25
26 (cd ./src/css; ./buildconf.sh)
27