# Make the GNU Readline/History libraries

$call libs
$exit

libs:
	!(./configure --disable-dynamic --enable-static)
	!make libreadline.a | tee spool
	!mv libreadline.a ../../bin
	!make distclean
	!rm -rf Makefile *spool*
	;

clean:
	!make clean
	!rm -rf Makefile *spool*
	;

