mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-05 23:11:31 +01:00
22 lines
261 B
Bash
Executable File
22 lines
261 B
Bash
Executable File
#! /bin/sh
|
|
|
|
ROOTDIR=`root-config --prefix`
|
|
|
|
if [ -e /usr/share/aclocal/root.m4 ]
|
|
then
|
|
ROOTM4=.
|
|
elif [ -e $ROOTDIR/build/misc/root.m4 ]
|
|
then
|
|
ROOTM4=$ROOTDIR/build/misc
|
|
fi
|
|
|
|
aclocal -I ./m4
|
|
|
|
autoheader
|
|
|
|
libtoolize
|
|
|
|
automake --add-missing --gnu
|
|
|
|
autoconf
|