#   Make the contrib package
#   Author: R. L. Williamson II, 17 Dec. 1991
#
# 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$ *** can't do this
#	mkpkg update		update library, link, and give error message

$call	relink
$exit

update:
	$call	relink
	$call	install
	;

relink:
	@acoadd relink
	@redshift relink
	@spfitpkg relink
	@slitless relink
	;

install:
	@acoadd install
	@redshift install
	@spfitpkg install
	@slitless install
	;
