forked from commontk/DCMTK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
32 lines (32 loc) · 796 Bytes
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /bin/sh
if test -d config ; then
if test -f config/modules ; then
tmp=`cat config/modules`
modules=`ls -d $tmp`
else
for dir in `ls`; do
if test -d $dir ; then
modules="$modules $dir"
fi
done
fi
modules=`echo $modules | sed -e "s/config//g" | sed -e "s/CVS//g"`
modules="config $modules doxygen"
else
echo "Cannot find configure directory (config or ../config)"
exit 1
fi
if test "x--help" = "x$*"; then
config/configure --help
elif test "x--help=short" = "x$*"; then
config/configure --help=short
elif test "x--help=recursive" = "x$*"; then
config/configure --help=recursive
elif test "x--version" = "x$*"; then
config/configure --version
else
for module in $modules ; do
echo "Running configure for module $module."
(cd $module && ./configure $* )
done
fi