#   Make the mstools package
#
#   Special keywords recognized by IRAF mkpkg files:
#
#	mkpkg relink		update object library and link
#	mkpkg linkonly		skip object library updates and just link
#	mkpkg install		move executable to lib$
#	mkpkg update		update object library, link, and move to lib$

$call	relink
$exit

update:
	$call	relink
	$call	install
	;

relink:
	$call   relink@msarith
	$call   relink@mscopy
	$call   relink@msstatistics
	;

install:
	$call   install@msarith
	$call   install@mscopy
	$call   install@msstatistics
	;

linkonly:
	;
