: ${X?}
# invoked in a directory that contains compiled functions
# task is to install the functions into $X
grep ":" Smakefile|egrep ":.* inter|: *inter|i\.[a-zA-Z0-9]*\.o|dev\..*:"|egrep -v "internal|CINTER"|
	sed "s/:.*//" >/tmp/files$$
if test -s /tmp/files$$
then
	mv `cat /tmp/files$$` $X && echo `cat /tmp/files$$` installed
fi
rm /tmp/files$$
