# Make the timeseries package
# Author: HSU, 25-JAN-1990
#
# 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:
	$update	timeseries.a
	$call	timeseries
	;

install:
	$move	xx_timeseries.e stsdasbin$x_timeseries.e
	;

timeseries:
linkonly:
	$omake	x_timeseries.x

	$link	x_timeseries.o timeseries.a \
		-ltbtables \
		-o xx_timeseries.e
	;

timeseries.a:
	@coadd
	@delaytime
	@filterphot
	@orderphase
	@polarimetry
	@subsky
	;
