#!/bin/sh
# Portable System Interface Copyright (c) 1997-1998 Tycho Softworks.
# $Id: instlibs 1.1 Tue, 23 Jun 1998 11:38:33 -0400 dyfet $

if test -f config.cache ; then
	. ./config.cache
fi

cd $CONFIG_BUILD
pwd
for makelib in "$*" ; do
	if test "$CONFIG_ELF" = "true" ; then
		cd $makelib 
		make shared
		cd ..
	fi
	cd $makelib 
	make install
	cd ..
done
exit 0


