
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20466 ec53bebd-3082-4978-b11e-865c3cabbd6b
27 lines
496 B
Bash
27 lines
496 B
Bash
#!/bin/sh
|
|
# $Id$
|
|
|
|
dir=$1
|
|
|
|
if test ! -f "$dir"/imdrover.c ; then
|
|
echo $dir doesnt seem to contain imath
|
|
exit 1
|
|
fi
|
|
|
|
rm *.[ch]
|
|
|
|
headers=`grep ^HDRS "$dir"/Makefile |sed 's/^HDRS=//' | sed 's/imdrover.h//'`
|
|
code=`echo $headers | sed 's/imrat.h//g'`
|
|
code=`echo $headers | sed 's/rsamath.h//g'`
|
|
code=`echo $headers | sed 's/\.h/.c/g'`
|
|
|
|
for a in $headers $code LICENSE ; do
|
|
cp "$dir"/"$a" .
|
|
done
|
|
|
|
echo "imathsource = \\"
|
|
for a in $headers $code ; do
|
|
echo " imath/$a \\"
|
|
done | sort
|
|
|