
#=============================================================================
#
#  INSTALL_DIR   --- Root directory into which the product is to be installed.
#  INSTALL_FILES --- Names of the files to be installed.
#  CLEAN_FILES   --- Names of specific files to be deleted when the directory
#                    is cleaned.  Files matching one of a default set of file
#                    name templates will be deleted automatically
#                    (i.e., *~ core *.bak *.orig *.old .#* #*# *.o).  This
#                    variable is for declaring additional files to delete which
#                    don't match any of the file name templates.
#  OBJECTS       --- List of object file names.
#  DISKIO_FILES  --- Files to run through diskio
#  DISKIO_PREFIX --- Two letter prefix to use with generated schema.
#  DISKIO_NAME   --- Name used to group all of the schema.
#  LIB_NAME      --- Name of the single object code library.  If this product
#                    creates more than one library, then this file will have to
#                    be edited beyond the usual required edits.
#  USERMAINPGM   --- Name of the single executable.  If this product creates
#                    more than one executable, then this file will have to
#                    be edited beyond the usual required edits.
#  USEROBJECTFILE--- Name of main object file for the main program.
#  USERINCDIRS   --- Additional include directories
#                    (e.g., -I$(PROD1_DIR)/include -I($PROD2_DIR)/include).
#  USERLIBFLAGS  --- Additional library and library directories
#                    (e.g., -L$(PROD1_DIR)/lib -l($PROD1)).
#
#  If more than one library or executable is associated with this product,
#  additional changes will be required to this file.  This should require:
#  1) Replicating similar targets for the additional libraries and executables
#     from the existing targets in the "OTHER TARGETS" section of this file.
#  2) Adding the new targets to the list of dependencies for the "all" target.
#
#  For example, for the product "mySch":
#     INSTALL_DIR   = $(MYSCH_DIR)
#     INSTALL_FILES = *.cc Makefile
#     CLEAN_FILES   = *.o tmp*
#     OBJECTS	    =
#     LIB_NAME	    = libmySch.a
#     USERMAINPGM   = mySch
#     USEROBJECTFILE= sdb_template.o
#     USERINCDIRS   = -I$(OTHER_PROD_DIR)/include
#     USERLIBFLAGS  = -L$(OTHER_PROD_DIR)/lib -l$(OTHER_PROD)
#     DISKIO_FILES  = 
#     DISKIO_PREFIX = my
#     DISKIO_NAMES  = mySch
#
#=============================================================================

INSTALL_DIR	= $(TARGET_INSTALL_DIR)
INSTALL_FILES	= *.c Makefile
CLEAN_FILES	= *.o diskio_gen.c .status*
OBJECTS		= diskio_gen.o taTclDeclare.o target.o io.o quasars.o \
		  galaxies.o stars.o serendipity.o standards.o tclIO.o \
		  tclTarget.o calibrate.o tclCalibrate.o catalogs.o \
		  tclCatalogs.o rosat.o tclCompletetile.o completetile.o \
		  usno.o
LIB_NAME	= libtarget.a
USERMAINPGM	= target
USEROBJECTFILE	= main.o
#USERINCDIRS	= -I$(ASTROTOOLS_DIR)/include -I$(ASTROTOOLS_DIR)/DA/include \
#		  -I$(SDSSMATH_DIR)/include \
#		  -I$(SLALIB_DIR)/src_c
#USERLIBFLAGS    = $(ASTROTOOLS_DIR)/lib/libastrotools.a \
#		  $(SDSSMATH_DIR)/lib/libsdssmath.a \
#		  $(SLALIB_DIR)/src_c/libsla.a
USERINCDIRS	= -I../common
USERLIBFLAGS	=
DISKIO_FILES	= ../common/arDetectionFlag.h ../common/arObjectType.h \
		  ../common/arObjectStatus.h ../common/arTargetType.h \
		  ../common/arPSFStatus.h \
		  ../include/taCalibObj.h ../include/taQuasars.h \
		  ../include/taGalaxies.h ../include/taStars.h \
		  ../include/taSerendipity.h ../include/taCatalogs.h \
		  ../include/taStandards.h ../include/taRosat.h \
		  ../include/taTargetObj.h ../include/taPlugMapObj.h
DISKIO_PREFIX	= ta
DISKIO_NAME	= Target

#=============================================================================
#
# You should not have to edit any of the rest of this file, if all you are
# doing is building one class library and one executable, and some supporting
# TCL scripts.
#
#=============================================================================

INC	= ../include
LIB	= ../lib
BIN	= ../bin

INCDIRS = -I$(INC) $(USERINCDIRS) \
	  -I$(DERVISH_DIR)/include -I$(DERVISH_DIR)/contrib \
	  -I$(ASTROTOOLS_DIR)/include \
	  -I$(ASTROTOOLS_DIR)/DA/include \
	  -I$(SDSSMATH_DIR)/include -I$(FFTW_DIR)/src \
	  -I$(SLALIB_DIR)/src_c \
	  -I$(FTCL_DIR)/include -I$(FTCL_DIR)/src \
	  -I$(LIBFITS_DIR)/src -I$(FPGPLOT_DIR)/include -I$(PGPLOT_DIR)/dst \
	  -I$(TK_DIR)/include -I$(TK_DIR)/src \
	  -I$(TCLX_DIR)/include -I$(TCLX_DIR)/src/src \
	  -I$(TCL_DIR)/include -I$(TCL_DIR)/src

LDFLAGS = $(USERLIBFLAGS) \
	  -L$(ASTROTOOLS_DIR)/lib -lastrotools \
	  $(FSLALIB_C) -L$(SDSSMATH_DIR)/lib -lsdssmath \
	  -L$(SLATEC_DIR)/lib -lslatec -L$(FFTW_DIR)/src -lfftw \
	  $(LIBSHV) $(LIBFITS) \
	  $(PGPLOTLIB) $(CONTRIBLIB) $(LIBFTCL) $(LLIBS) $(PGLIB) \
	  $(FLIBS) $(ELIBS)

CFLAGS = $(SDSS_CFLAGS) $(INCDIRS) $(CCHK) $(VCFLAGS)
CFLAGS_DEFGP  = $(SDSS_CFLAGS_DEFGP) $(INCDIRS)

#   default rule for compiling
.c.o:
	$(CC) -c $(CFLAGS) $*.c 

#===========================================================================
# STANDARD TARGETS
#===========================================================================

default:
	@echo Please invoke this makefile using sdssmake. >&2
	@exit 1

all : $(LIB)/$(LIB_NAME) $(BIN)/$(USERMAINPGM)

make :
	@if [ "$(CCENV)" = "" ]; then ccenv=`uname`; else ccenv=$(CCENV); fi; \
	echo \
	"make_make -cc '$(CC) $(CFLAGS)' -nostd -file Makefile" \
							"-env $$ccenv *.c"; \
	make_make -cc '$(CC) $(CFLAGS)' -nostd -file Makefile -env $$ccenv *.c

install :
	@if [ "$(INSTALL_DIR)" = "" ]; then \
		echo You have not specified a destination directory >&2; \
		exit 1; \
	fi     
	@ rm -rf $(INSTALL_DIR)/src
	@ mkdir $(INSTALL_DIR)/src
	@if [ "$(INSTALL_FILES)" != "" ]; then \
		cp $(INSTALL_FILES) $(INSTALL_DIR)/src; \
		chmod 644 $(INSTALL_DIR)/src/*; \
	fi

clean :
	rm -f $(CLEAN_FILES) *~ core *.bak *.orig *.old .#* #*#

#===========================================================================
# ADDITIONAL TARGETS
#===========================================================================

$(LIB)/$(LIB_NAME) : $(OBJECTS)
	$(AR) $(ARFLAGS) $(LIB)/$(LIB_NAME) $?
	- if [ "$(RANLIB)" != "" -a -x "$(RANLIB)" ]; then \
		$(RANLIB) $(LIB)/$(LIB_NAME); \
	fi

$(BIN)/$(USERMAINPGM) : $(USEROBJECTFILE) $(LIB)/$(LIB_NAME)
	$(CC) -o $@ $(CFLAGS_DEFGP) $(CCCHK) $(USEROBJECTFILE) \
		$(LIB)/$(LIB_NAME) $(LDFLAGS)

diskio_gen.c : $(DISKIO_FILES)
	if [ "$(DISKIO_FILES)" != "" ]; then \
		rm -f diskio_gen.c; \
		make_io -v1 -p $(DISKIO_PREFIX) -m $(DISKIO_NAME) \
			diskio_gen.c $(DISKIO_FILES); \
	fi

#===========================================================================
# INCLUDE FILE DEPENDENCIES
#===========================================================================
#
# include file dependencies.
# All lines below START_DEPEND are machine generated; Do Not Edit
# 
#START_DEPEND
calibrate.o: calibrate.c
calibrate.o: $(DERVISH_DIR)/include/dervish.h
calibrate.o: $(TCLX_DIR)/include/tclExtend.h
calibrate.o: $(TCL_DIR)/include/tcl.h
calibrate.o: $(FTCL_DIR)/include/ftcl.h
calibrate.o: $(FTCL_DIR)/include/ftclParseArgv.h
calibrate.o: $(DERVISH_DIR)/include/dervish_msg_c.h
calibrate.o: $(DERVISH_DIR)/include/region.h
calibrate.o: $(DERVISH_DIR)/include/shCAlign.h
calibrate.o: $(DERVISH_DIR)/include/shCSchema.h
calibrate.o: $(DERVISH_DIR)/include/shCHdr.h
calibrate.o: $(DERVISH_DIR)/include/shC.h
calibrate.o: $(DERVISH_DIR)/include/shChain.h
calibrate.o: $(DERVISH_DIR)/include/shCArray.h
calibrate.o: $(DERVISH_DIR)/include/shCVecExpr.h
calibrate.o: $(DERVISH_DIR)/include/shCUtils.h
calibrate.o: $(DERVISH_DIR)/include/shCErrStack.h
calibrate.o: $(DERVISH_DIR)/include/shTclErrStack.h
calibrate.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
calibrate.o: $(DERVISH_DIR)/include/shTclHandle.h
calibrate.o: $(DERVISH_DIR)/include/shCList.h
calibrate.o: $(DERVISH_DIR)/include/shCTbl.h
calibrate.o: $(LIBFITS_DIR)/src/libfits.h
calibrate.o: $(DERVISH_DIR)/include/shCFitsIo.h
calibrate.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
calibrate.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
calibrate.o: $(DERVISH_DIR)/include/shCFits.h
calibrate.o: $(DERVISH_DIR)/include/shCMaskUtils.h
calibrate.o: $(DERVISH_DIR)/include/shCRegUtils.h
calibrate.o: $(DERVISH_DIR)/include/shCRegPrint.h
calibrate.o: $(DERVISH_DIR)/include/shCHash.h
calibrate.o: $(DERVISH_DIR)/include/shCAssert.h
calibrate.o: $(DERVISH_DIR)/include/shCEnvscan.h
calibrate.o: $(DERVISH_DIR)/include/shTclRegSupport.h
calibrate.o: $(DERVISH_DIR)/include/shCSao.h
calibrate.o: $(DERVISH_DIR)/include/imtool.h
calibrate.o: $(DERVISH_DIR)/include/shTclParseArgv.h
calibrate.o: $(DERVISH_DIR)/include/shTclVerbs.h
calibrate.o: $(DERVISH_DIR)/include/shTclSao.h
calibrate.o: $(FTCL_DIR)/include/ftclCmdLine.h
calibrate.o: $(DERVISH_DIR)/include/shTclUtils.h
calibrate.o: $(DERVISH_DIR)/include/shTk.h
calibrate.o: $(DERVISH_DIR)/include/shCGarbage.h
calibrate.o: $(DERVISH_DIR)/include/shCHg.h
calibrate.o: $(DERVISH_DIR)/include/shCLink.h
calibrate.o: $(DERVISH_DIR)/include/shCLut.h
calibrate.o: $(DERVISH_DIR)/include/shCVecChain.h
calibrate.o: $(DERVISH_DIR)/include/shCDemo.h
calibrate.o: $(DERVISH_DIR)/include/shCDiskio.h
calibrate.o: $(DERVISH_DIR)/include/shCHist.h
calibrate.o: $(DERVISH_DIR)/include/shCMask.h
calibrate.o: $(DERVISH_DIR)/include/shCMemory.h
calibrate.o: $(DERVISH_DIR)/include/shCRegPhysical.h
calibrate.o: $(DERVISH_DIR)/include/shTclAlign.h
calibrate.o: $(DERVISH_DIR)/include/shTclArray.h
calibrate.o: $(DERVISH_DIR)/include/shTclFits.h
calibrate.o: $(DERVISH_DIR)/include/shTclHdr.h
calibrate.o: $(DERVISH_DIR)/include/shTclSupport.h
calibrate.o: $(DERVISH_DIR)/include/shTclTree.h
calibrate.o: $(ASTROTOOLS_DIR)/include/astrotools.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atTrans.h
calibrate.o: $(SDSSMATH_DIR)/include/sdssmath.h
calibrate.o: $(SDSSMATH_DIR)/include/tclMath.h
calibrate.o: $(SDSSMATH_DIR)/include/slatec.h
calibrate.o: $(SDSSMATH_DIR)/include/smaFunc.h
calibrate.o: $(SDSSMATH_DIR)/include/smaFft.h
calibrate.o: $(FFTW_DIR)/src/fftw.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atConversions.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atObject.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atGauss.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atImSim.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atCali.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
calibrate.o: $(ASTROTOOLS_DIR)/include/atAperture.h
calibrate.o: $(SLALIB_DIR)/src_c/slalib.h
calibrate.o: ../include/taCalibObj.h
calibrate.o: ../common/arObjectType.h
calibrate.o: ../common/arPSFStatus.h
calibrate.o: ../common/arDetectionFlag.h
calibrate.o: ../include/taCosmic.h
catalogs.o: catalogs.c
catalogs.o: $(DERVISH_DIR)/include/dervish.h
catalogs.o: $(TCLX_DIR)/include/tclExtend.h
catalogs.o: $(TCL_DIR)/include/tcl.h
catalogs.o: $(FTCL_DIR)/include/ftcl.h
catalogs.o: $(FTCL_DIR)/include/ftclParseArgv.h
catalogs.o: $(DERVISH_DIR)/include/dervish_msg_c.h
catalogs.o: $(DERVISH_DIR)/include/region.h
catalogs.o: $(DERVISH_DIR)/include/shCAlign.h
catalogs.o: $(DERVISH_DIR)/include/shCSchema.h
catalogs.o: $(DERVISH_DIR)/include/shCHdr.h
catalogs.o: $(DERVISH_DIR)/include/shC.h
catalogs.o: $(DERVISH_DIR)/include/shChain.h
catalogs.o: $(DERVISH_DIR)/include/shCArray.h
catalogs.o: $(DERVISH_DIR)/include/shCVecExpr.h
catalogs.o: $(DERVISH_DIR)/include/shCUtils.h
catalogs.o: $(DERVISH_DIR)/include/shCErrStack.h
catalogs.o: $(DERVISH_DIR)/include/shTclErrStack.h
catalogs.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
catalogs.o: $(DERVISH_DIR)/include/shTclHandle.h
catalogs.o: $(DERVISH_DIR)/include/shCList.h
catalogs.o: $(DERVISH_DIR)/include/shCTbl.h
catalogs.o: $(LIBFITS_DIR)/src/libfits.h
catalogs.o: $(DERVISH_DIR)/include/shCFitsIo.h
catalogs.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
catalogs.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
catalogs.o: $(DERVISH_DIR)/include/shCFits.h
catalogs.o: $(DERVISH_DIR)/include/shCMaskUtils.h
catalogs.o: $(DERVISH_DIR)/include/shCRegUtils.h
catalogs.o: $(DERVISH_DIR)/include/shCRegPrint.h
catalogs.o: $(DERVISH_DIR)/include/shCHash.h
catalogs.o: $(DERVISH_DIR)/include/shCAssert.h
catalogs.o: $(DERVISH_DIR)/include/shCEnvscan.h
catalogs.o: $(DERVISH_DIR)/include/shTclRegSupport.h
catalogs.o: $(DERVISH_DIR)/include/shCSao.h
catalogs.o: $(DERVISH_DIR)/include/imtool.h
catalogs.o: $(DERVISH_DIR)/include/shTclParseArgv.h
catalogs.o: $(DERVISH_DIR)/include/shTclVerbs.h
catalogs.o: $(DERVISH_DIR)/include/shTclSao.h
catalogs.o: $(FTCL_DIR)/include/ftclCmdLine.h
catalogs.o: $(DERVISH_DIR)/include/shTclUtils.h
catalogs.o: $(DERVISH_DIR)/include/shTk.h
catalogs.o: $(DERVISH_DIR)/include/shCGarbage.h
catalogs.o: $(DERVISH_DIR)/include/shCHg.h
catalogs.o: $(DERVISH_DIR)/include/shCLink.h
catalogs.o: $(DERVISH_DIR)/include/shCLut.h
catalogs.o: $(DERVISH_DIR)/include/shCVecChain.h
catalogs.o: $(DERVISH_DIR)/include/shCDemo.h
catalogs.o: $(DERVISH_DIR)/include/shCDiskio.h
catalogs.o: $(DERVISH_DIR)/include/shCHist.h
catalogs.o: $(DERVISH_DIR)/include/shCMask.h
catalogs.o: $(DERVISH_DIR)/include/shCMemory.h
catalogs.o: $(DERVISH_DIR)/include/shCRegPhysical.h
catalogs.o: $(DERVISH_DIR)/include/shTclAlign.h
catalogs.o: $(DERVISH_DIR)/include/shTclArray.h
catalogs.o: $(DERVISH_DIR)/include/shTclFits.h
catalogs.o: $(DERVISH_DIR)/include/shTclHdr.h
catalogs.o: $(DERVISH_DIR)/include/shTclSupport.h
catalogs.o: $(DERVISH_DIR)/include/shTclTree.h
catalogs.o: $(ASTROTOOLS_DIR)/include/astrotools.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atTrans.h
catalogs.o: $(SDSSMATH_DIR)/include/sdssmath.h
catalogs.o: $(SDSSMATH_DIR)/include/tclMath.h
catalogs.o: $(SDSSMATH_DIR)/include/slatec.h
catalogs.o: $(SDSSMATH_DIR)/include/smaFunc.h
catalogs.o: $(SDSSMATH_DIR)/include/smaFft.h
catalogs.o: $(FFTW_DIR)/src/fftw.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atConversions.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atObject.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atGauss.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atImSim.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atCali.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
catalogs.o: $(ASTROTOOLS_DIR)/include/atAperture.h
catalogs.o: $(SLALIB_DIR)/src_c/slalib.h
catalogs.o: ../include/taCalibObj.h
catalogs.o: ../common/arObjectType.h
catalogs.o: ../common/arPSFStatus.h
catalogs.o: ../include/taCatalogs.h
catalogs.o: ../common/arObjectStatus.h
completetile.o: completetile.c
completetile.o: $(DERVISH_DIR)/include/dervish.h
completetile.o: $(TCLX_DIR)/include/tclExtend.h
completetile.o: $(TCL_DIR)/include/tcl.h
completetile.o: $(FTCL_DIR)/include/ftcl.h
completetile.o: $(FTCL_DIR)/include/ftclParseArgv.h
completetile.o: $(DERVISH_DIR)/include/dervish_msg_c.h
completetile.o: $(DERVISH_DIR)/include/region.h
completetile.o: $(DERVISH_DIR)/include/shCAlign.h
completetile.o: $(DERVISH_DIR)/include/shCSchema.h
completetile.o: $(DERVISH_DIR)/include/shCHdr.h
completetile.o: $(DERVISH_DIR)/include/shC.h
completetile.o: $(DERVISH_DIR)/include/shChain.h
completetile.o: $(DERVISH_DIR)/include/shCArray.h
completetile.o: $(DERVISH_DIR)/include/shCVecExpr.h
completetile.o: $(DERVISH_DIR)/include/shCUtils.h
completetile.o: $(DERVISH_DIR)/include/shCErrStack.h
completetile.o: $(DERVISH_DIR)/include/shTclErrStack.h
completetile.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
completetile.o: $(DERVISH_DIR)/include/shTclHandle.h
completetile.o: $(DERVISH_DIR)/include/shCList.h
completetile.o: $(DERVISH_DIR)/include/shCTbl.h
completetile.o: $(LIBFITS_DIR)/src/libfits.h
completetile.o: $(DERVISH_DIR)/include/shCFitsIo.h
completetile.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
completetile.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
completetile.o: $(DERVISH_DIR)/include/shCFits.h
completetile.o: $(DERVISH_DIR)/include/shCMaskUtils.h
completetile.o: $(DERVISH_DIR)/include/shCRegUtils.h
completetile.o: $(DERVISH_DIR)/include/shCRegPrint.h
completetile.o: $(DERVISH_DIR)/include/shCHash.h
completetile.o: $(DERVISH_DIR)/include/shCAssert.h
completetile.o: $(DERVISH_DIR)/include/shCEnvscan.h
completetile.o: $(DERVISH_DIR)/include/shTclRegSupport.h
completetile.o: $(DERVISH_DIR)/include/shCSao.h
completetile.o: $(DERVISH_DIR)/include/imtool.h
completetile.o: $(DERVISH_DIR)/include/shTclParseArgv.h
completetile.o: $(DERVISH_DIR)/include/shTclVerbs.h
completetile.o: $(DERVISH_DIR)/include/shTclSao.h
completetile.o: $(FTCL_DIR)/include/ftclCmdLine.h
completetile.o: $(DERVISH_DIR)/include/shTclUtils.h
completetile.o: $(DERVISH_DIR)/include/shTk.h
completetile.o: $(DERVISH_DIR)/include/shCGarbage.h
completetile.o: $(DERVISH_DIR)/include/shCHg.h
completetile.o: $(DERVISH_DIR)/include/shCLink.h
completetile.o: $(DERVISH_DIR)/include/shCLut.h
completetile.o: $(DERVISH_DIR)/include/shCVecChain.h
completetile.o: $(DERVISH_DIR)/include/shCDemo.h
completetile.o: $(DERVISH_DIR)/include/shCDiskio.h
completetile.o: $(DERVISH_DIR)/include/shCHist.h
completetile.o: $(DERVISH_DIR)/include/shCMask.h
completetile.o: $(DERVISH_DIR)/include/shCMemory.h
completetile.o: $(DERVISH_DIR)/include/shCRegPhysical.h
completetile.o: $(DERVISH_DIR)/include/shTclAlign.h
completetile.o: $(DERVISH_DIR)/include/shTclArray.h
completetile.o: $(DERVISH_DIR)/include/shTclFits.h
completetile.o: $(DERVISH_DIR)/include/shTclHdr.h
completetile.o: $(DERVISH_DIR)/include/shTclSupport.h
completetile.o: $(DERVISH_DIR)/include/shTclTree.h
completetile.o: ../common/arTargetType.h
completetile.o: ../include/taCompletetile.h
completetile.o: ../include/taTargetObj.h
completetile.o: ../include/taPlugMapObj.h
galaxies.o: galaxies.c
galaxies.o: $(DERVISH_DIR)/include/dervish.h
galaxies.o: $(TCLX_DIR)/include/tclExtend.h
galaxies.o: $(TCL_DIR)/include/tcl.h
galaxies.o: $(FTCL_DIR)/include/ftcl.h
galaxies.o: $(FTCL_DIR)/include/ftclParseArgv.h
galaxies.o: $(DERVISH_DIR)/include/dervish_msg_c.h
galaxies.o: $(DERVISH_DIR)/include/region.h
galaxies.o: $(DERVISH_DIR)/include/shCAlign.h
galaxies.o: $(DERVISH_DIR)/include/shCSchema.h
galaxies.o: $(DERVISH_DIR)/include/shCHdr.h
galaxies.o: $(DERVISH_DIR)/include/shC.h
galaxies.o: $(DERVISH_DIR)/include/shChain.h
galaxies.o: $(DERVISH_DIR)/include/shCArray.h
galaxies.o: $(DERVISH_DIR)/include/shCVecExpr.h
galaxies.o: $(DERVISH_DIR)/include/shCUtils.h
galaxies.o: $(DERVISH_DIR)/include/shCErrStack.h
galaxies.o: $(DERVISH_DIR)/include/shTclErrStack.h
galaxies.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
galaxies.o: $(DERVISH_DIR)/include/shTclHandle.h
galaxies.o: $(DERVISH_DIR)/include/shCList.h
galaxies.o: $(DERVISH_DIR)/include/shCTbl.h
galaxies.o: $(LIBFITS_DIR)/src/libfits.h
galaxies.o: $(DERVISH_DIR)/include/shCFitsIo.h
galaxies.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
galaxies.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
galaxies.o: $(DERVISH_DIR)/include/shCFits.h
galaxies.o: $(DERVISH_DIR)/include/shCMaskUtils.h
galaxies.o: $(DERVISH_DIR)/include/shCRegUtils.h
galaxies.o: $(DERVISH_DIR)/include/shCRegPrint.h
galaxies.o: $(DERVISH_DIR)/include/shCHash.h
galaxies.o: $(DERVISH_DIR)/include/shCAssert.h
galaxies.o: $(DERVISH_DIR)/include/shCEnvscan.h
galaxies.o: $(DERVISH_DIR)/include/shTclRegSupport.h
galaxies.o: $(DERVISH_DIR)/include/shCSao.h
galaxies.o: $(DERVISH_DIR)/include/imtool.h
galaxies.o: $(DERVISH_DIR)/include/shTclParseArgv.h
galaxies.o: $(DERVISH_DIR)/include/shTclVerbs.h
galaxies.o: $(DERVISH_DIR)/include/shTclSao.h
galaxies.o: $(FTCL_DIR)/include/ftclCmdLine.h
galaxies.o: $(DERVISH_DIR)/include/shTclUtils.h
galaxies.o: $(DERVISH_DIR)/include/shTk.h
galaxies.o: $(DERVISH_DIR)/include/shCGarbage.h
galaxies.o: $(DERVISH_DIR)/include/shCHg.h
galaxies.o: $(DERVISH_DIR)/include/shCLink.h
galaxies.o: $(DERVISH_DIR)/include/shCLut.h
galaxies.o: $(DERVISH_DIR)/include/shCVecChain.h
galaxies.o: $(DERVISH_DIR)/include/shCDemo.h
galaxies.o: $(DERVISH_DIR)/include/shCDiskio.h
galaxies.o: $(DERVISH_DIR)/include/shCHist.h
galaxies.o: $(DERVISH_DIR)/include/shCMask.h
galaxies.o: $(DERVISH_DIR)/include/shCMemory.h
galaxies.o: $(DERVISH_DIR)/include/shCRegPhysical.h
galaxies.o: $(DERVISH_DIR)/include/shTclAlign.h
galaxies.o: $(DERVISH_DIR)/include/shTclArray.h
galaxies.o: $(DERVISH_DIR)/include/shTclFits.h
galaxies.o: $(DERVISH_DIR)/include/shTclHdr.h
galaxies.o: $(DERVISH_DIR)/include/shTclSupport.h
galaxies.o: $(DERVISH_DIR)/include/shTclTree.h
galaxies.o: ../include/taCalibObj.h
galaxies.o: $(ASTROTOOLS_DIR)/include/astrotools.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atTrans.h
galaxies.o: $(SDSSMATH_DIR)/include/sdssmath.h
galaxies.o: $(SDSSMATH_DIR)/include/tclMath.h
galaxies.o: $(SDSSMATH_DIR)/include/slatec.h
galaxies.o: $(SDSSMATH_DIR)/include/smaFunc.h
galaxies.o: $(SDSSMATH_DIR)/include/smaFft.h
galaxies.o: $(FFTW_DIR)/src/fftw.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atConversions.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atObject.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atGauss.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atImSim.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atCali.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
galaxies.o: $(ASTROTOOLS_DIR)/include/atAperture.h
galaxies.o: ../common/arObjectType.h
galaxies.o: ../common/arPSFStatus.h
galaxies.o: ../include/taGalaxies.h
galaxies.o: ../common/arTargetType.h
galaxies.o: ../common/arDetectionFlag.h
galaxies.o: ../common/arObjectStatus.h
io.o: io.c
io.o: $(DERVISH_DIR)/include/dervish.h
io.o: $(TCLX_DIR)/include/tclExtend.h
io.o: $(TCL_DIR)/include/tcl.h
io.o: $(FTCL_DIR)/include/ftcl.h
io.o: $(FTCL_DIR)/include/ftclParseArgv.h
io.o: $(DERVISH_DIR)/include/dervish_msg_c.h
io.o: $(DERVISH_DIR)/include/region.h
io.o: $(DERVISH_DIR)/include/shCAlign.h
io.o: $(DERVISH_DIR)/include/shCSchema.h
io.o: $(DERVISH_DIR)/include/shCHdr.h
io.o: $(DERVISH_DIR)/include/shC.h
io.o: $(DERVISH_DIR)/include/shChain.h
io.o: $(DERVISH_DIR)/include/shCArray.h
io.o: $(DERVISH_DIR)/include/shCVecExpr.h
io.o: $(DERVISH_DIR)/include/shCUtils.h
io.o: $(DERVISH_DIR)/include/shCErrStack.h
io.o: $(DERVISH_DIR)/include/shTclErrStack.h
io.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
io.o: $(DERVISH_DIR)/include/shTclHandle.h
io.o: $(DERVISH_DIR)/include/shCList.h
io.o: $(DERVISH_DIR)/include/shCTbl.h
io.o: $(LIBFITS_DIR)/src/libfits.h
io.o: $(DERVISH_DIR)/include/shCFitsIo.h
io.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
io.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
io.o: $(DERVISH_DIR)/include/shCFits.h
io.o: $(DERVISH_DIR)/include/shCMaskUtils.h
io.o: $(DERVISH_DIR)/include/shCRegUtils.h
io.o: $(DERVISH_DIR)/include/shCRegPrint.h
io.o: $(DERVISH_DIR)/include/shCHash.h
io.o: $(DERVISH_DIR)/include/shCAssert.h
io.o: $(DERVISH_DIR)/include/shCEnvscan.h
io.o: $(DERVISH_DIR)/include/shTclRegSupport.h
io.o: $(DERVISH_DIR)/include/shCSao.h
io.o: $(DERVISH_DIR)/include/imtool.h
io.o: $(DERVISH_DIR)/include/shTclParseArgv.h
io.o: $(DERVISH_DIR)/include/shTclVerbs.h
io.o: $(DERVISH_DIR)/include/shTclSao.h
io.o: $(FTCL_DIR)/include/ftclCmdLine.h
io.o: $(DERVISH_DIR)/include/shTclUtils.h
io.o: $(DERVISH_DIR)/include/shTk.h
io.o: $(DERVISH_DIR)/include/shCGarbage.h
io.o: $(DERVISH_DIR)/include/shCHg.h
io.o: $(DERVISH_DIR)/include/shCLink.h
io.o: $(DERVISH_DIR)/include/shCLut.h
io.o: $(DERVISH_DIR)/include/shCVecChain.h
io.o: $(DERVISH_DIR)/include/shCDemo.h
io.o: $(DERVISH_DIR)/include/shCDiskio.h
io.o: $(DERVISH_DIR)/include/shCHist.h
io.o: $(DERVISH_DIR)/include/shCMask.h
io.o: $(DERVISH_DIR)/include/shCMemory.h
io.o: $(DERVISH_DIR)/include/shCRegPhysical.h
io.o: $(DERVISH_DIR)/include/shTclAlign.h
io.o: $(DERVISH_DIR)/include/shTclArray.h
io.o: $(DERVISH_DIR)/include/shTclFits.h
io.o: $(DERVISH_DIR)/include/shTclHdr.h
io.o: $(DERVISH_DIR)/include/shTclSupport.h
io.o: $(DERVISH_DIR)/include/shTclTree.h
io.o: ../include/taCalibObj.h
io.o: $(ASTROTOOLS_DIR)/include/astrotools.h
io.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
io.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
io.o: $(ASTROTOOLS_DIR)/include/atTrans.h
io.o: $(SDSSMATH_DIR)/include/sdssmath.h
io.o: $(SDSSMATH_DIR)/include/tclMath.h
io.o: $(SDSSMATH_DIR)/include/slatec.h
io.o: $(SDSSMATH_DIR)/include/smaFunc.h
io.o: $(SDSSMATH_DIR)/include/smaFft.h
io.o: $(FFTW_DIR)/src/fftw.h
io.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
io.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
io.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
io.o: $(ASTROTOOLS_DIR)/include/atConversions.h
io.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
io.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
io.o: $(ASTROTOOLS_DIR)/include/atObject.h
io.o: $(ASTROTOOLS_DIR)/include/atGauss.h
io.o: $(ASTROTOOLS_DIR)/include/atImSim.h
io.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
io.o: $(ASTROTOOLS_DIR)/include/atCali.h
io.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
io.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
io.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
io.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
io.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
io.o: $(ASTROTOOLS_DIR)/include/atAperture.h
io.o: ../common/arObjectType.h
io.o: ../common/arPSFStatus.h
main.o: main.c
main.o: $(DERVISH_DIR)/include/dervish.h
main.o: $(TCLX_DIR)/include/tclExtend.h
main.o: $(TCL_DIR)/include/tcl.h
main.o: $(FTCL_DIR)/include/ftcl.h
main.o: $(FTCL_DIR)/include/ftclParseArgv.h
main.o: $(DERVISH_DIR)/include/dervish_msg_c.h
main.o: $(DERVISH_DIR)/include/region.h
main.o: $(DERVISH_DIR)/include/shCAlign.h
main.o: $(DERVISH_DIR)/include/shCSchema.h
main.o: $(DERVISH_DIR)/include/shCHdr.h
main.o: $(DERVISH_DIR)/include/shC.h
main.o: $(DERVISH_DIR)/include/shChain.h
main.o: $(DERVISH_DIR)/include/shCArray.h
main.o: $(DERVISH_DIR)/include/shCVecExpr.h
main.o: $(DERVISH_DIR)/include/shCUtils.h
main.o: $(DERVISH_DIR)/include/shCErrStack.h
main.o: $(DERVISH_DIR)/include/shTclErrStack.h
main.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
main.o: $(DERVISH_DIR)/include/shTclHandle.h
main.o: $(DERVISH_DIR)/include/shCList.h
main.o: $(DERVISH_DIR)/include/shCTbl.h
main.o: $(LIBFITS_DIR)/src/libfits.h
main.o: $(DERVISH_DIR)/include/shCFitsIo.h
main.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
main.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
main.o: $(DERVISH_DIR)/include/shCFits.h
main.o: $(DERVISH_DIR)/include/shCMaskUtils.h
main.o: $(DERVISH_DIR)/include/shCRegUtils.h
main.o: $(DERVISH_DIR)/include/shCRegPrint.h
main.o: $(DERVISH_DIR)/include/shCHash.h
main.o: $(DERVISH_DIR)/include/shCAssert.h
main.o: $(DERVISH_DIR)/include/shCEnvscan.h
main.o: $(DERVISH_DIR)/include/shTclRegSupport.h
main.o: $(DERVISH_DIR)/include/shCSao.h
main.o: $(DERVISH_DIR)/include/imtool.h
main.o: $(DERVISH_DIR)/include/shTclParseArgv.h
main.o: $(DERVISH_DIR)/include/shTclVerbs.h
main.o: $(DERVISH_DIR)/include/shTclSao.h
main.o: $(FTCL_DIR)/include/ftclCmdLine.h
main.o: $(DERVISH_DIR)/include/shTclUtils.h
main.o: $(DERVISH_DIR)/include/shTk.h
main.o: $(DERVISH_DIR)/include/shCGarbage.h
main.o: $(DERVISH_DIR)/include/shCHg.h
main.o: $(DERVISH_DIR)/include/shCLink.h
main.o: $(DERVISH_DIR)/include/shCLut.h
main.o: $(DERVISH_DIR)/include/shCVecChain.h
main.o: $(DERVISH_DIR)/include/shCDemo.h
main.o: $(DERVISH_DIR)/include/shCDiskio.h
main.o: $(DERVISH_DIR)/include/shCHist.h
main.o: $(DERVISH_DIR)/include/shCMask.h
main.o: $(DERVISH_DIR)/include/shCMemory.h
main.o: $(DERVISH_DIR)/include/shCRegPhysical.h
main.o: $(DERVISH_DIR)/include/shTclAlign.h
main.o: $(DERVISH_DIR)/include/shTclArray.h
main.o: $(DERVISH_DIR)/include/shTclFits.h
main.o: $(DERVISH_DIR)/include/shTclHdr.h
main.o: $(DERVISH_DIR)/include/shTclSupport.h
main.o: $(DERVISH_DIR)/include/shTclTree.h
quasars.o: quasars.c
quasars.o: $(ASTROTOOLS_DIR)/include/astrotools.h
quasars.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
quasars.o: $(DERVISH_DIR)/include/dervish.h
quasars.o: $(TCLX_DIR)/include/tclExtend.h
quasars.o: $(TCL_DIR)/include/tcl.h
quasars.o: $(FTCL_DIR)/include/ftcl.h
quasars.o: $(FTCL_DIR)/include/ftclParseArgv.h
quasars.o: $(DERVISH_DIR)/include/dervish_msg_c.h
quasars.o: $(DERVISH_DIR)/include/region.h
quasars.o: $(DERVISH_DIR)/include/shCAlign.h
quasars.o: $(DERVISH_DIR)/include/shCSchema.h
quasars.o: $(DERVISH_DIR)/include/shCHdr.h
quasars.o: $(DERVISH_DIR)/include/shC.h
quasars.o: $(DERVISH_DIR)/include/shChain.h
quasars.o: $(DERVISH_DIR)/include/shCArray.h
quasars.o: $(DERVISH_DIR)/include/shCVecExpr.h
quasars.o: $(DERVISH_DIR)/include/shCUtils.h
quasars.o: $(DERVISH_DIR)/include/shCErrStack.h
quasars.o: $(DERVISH_DIR)/include/shTclErrStack.h
quasars.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
quasars.o: $(DERVISH_DIR)/include/shTclHandle.h
quasars.o: $(DERVISH_DIR)/include/shCList.h
quasars.o: $(DERVISH_DIR)/include/shCTbl.h
quasars.o: $(LIBFITS_DIR)/src/libfits.h
quasars.o: $(DERVISH_DIR)/include/shCFitsIo.h
quasars.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
quasars.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
quasars.o: $(DERVISH_DIR)/include/shCFits.h
quasars.o: $(DERVISH_DIR)/include/shCMaskUtils.h
quasars.o: $(DERVISH_DIR)/include/shCRegUtils.h
quasars.o: $(DERVISH_DIR)/include/shCRegPrint.h
quasars.o: $(DERVISH_DIR)/include/shCHash.h
quasars.o: $(DERVISH_DIR)/include/shCAssert.h
quasars.o: $(DERVISH_DIR)/include/shCEnvscan.h
quasars.o: $(DERVISH_DIR)/include/shTclRegSupport.h
quasars.o: $(DERVISH_DIR)/include/shCSao.h
quasars.o: $(DERVISH_DIR)/include/imtool.h
quasars.o: $(DERVISH_DIR)/include/shTclParseArgv.h
quasars.o: $(DERVISH_DIR)/include/shTclVerbs.h
quasars.o: $(DERVISH_DIR)/include/shTclSao.h
quasars.o: $(FTCL_DIR)/include/ftclCmdLine.h
quasars.o: $(DERVISH_DIR)/include/shTclUtils.h
quasars.o: $(DERVISH_DIR)/include/shTk.h
quasars.o: $(DERVISH_DIR)/include/shCGarbage.h
quasars.o: $(DERVISH_DIR)/include/shCHg.h
quasars.o: $(DERVISH_DIR)/include/shCLink.h
quasars.o: $(DERVISH_DIR)/include/shCLut.h
quasars.o: $(DERVISH_DIR)/include/shCVecChain.h
quasars.o: $(DERVISH_DIR)/include/shCDemo.h
quasars.o: $(DERVISH_DIR)/include/shCDiskio.h
quasars.o: $(DERVISH_DIR)/include/shCHist.h
quasars.o: $(DERVISH_DIR)/include/shCMask.h
quasars.o: $(DERVISH_DIR)/include/shCMemory.h
quasars.o: $(DERVISH_DIR)/include/shCRegPhysical.h
quasars.o: $(DERVISH_DIR)/include/shTclAlign.h
quasars.o: $(DERVISH_DIR)/include/shTclArray.h
quasars.o: $(DERVISH_DIR)/include/shTclFits.h
quasars.o: $(DERVISH_DIR)/include/shTclHdr.h
quasars.o: $(DERVISH_DIR)/include/shTclSupport.h
quasars.o: $(DERVISH_DIR)/include/shTclTree.h
quasars.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
quasars.o: $(ASTROTOOLS_DIR)/include/atTrans.h
quasars.o: $(SDSSMATH_DIR)/include/sdssmath.h
quasars.o: $(SDSSMATH_DIR)/include/tclMath.h
quasars.o: $(SDSSMATH_DIR)/include/slatec.h
quasars.o: $(SDSSMATH_DIR)/include/smaFunc.h
quasars.o: $(SDSSMATH_DIR)/include/smaFft.h
quasars.o: $(FFTW_DIR)/src/fftw.h
quasars.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
quasars.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
quasars.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
quasars.o: $(ASTROTOOLS_DIR)/include/atConversions.h
quasars.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
quasars.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
quasars.o: $(ASTROTOOLS_DIR)/include/atObject.h
quasars.o: $(ASTROTOOLS_DIR)/include/atGauss.h
quasars.o: $(ASTROTOOLS_DIR)/include/atImSim.h
quasars.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
quasars.o: $(ASTROTOOLS_DIR)/include/atCali.h
quasars.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
quasars.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
quasars.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
quasars.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
quasars.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
quasars.o: $(ASTROTOOLS_DIR)/include/atAperture.h
quasars.o: ../include/taCalibObj.h
quasars.o: ../common/arObjectType.h
quasars.o: ../common/arPSFStatus.h
quasars.o: ../include/taQuasars.h
quasars.o: ../common/arTargetType.h
quasars.o: ../common/arDetectionFlag.h
quasars.o: ../common/arObjectStatus.h
rosat.o: rosat.c
rosat.o: $(DERVISH_DIR)/include/dervish.h
rosat.o: $(TCLX_DIR)/include/tclExtend.h
rosat.o: $(TCL_DIR)/include/tcl.h
rosat.o: $(FTCL_DIR)/include/ftcl.h
rosat.o: $(FTCL_DIR)/include/ftclParseArgv.h
rosat.o: $(DERVISH_DIR)/include/dervish_msg_c.h
rosat.o: $(DERVISH_DIR)/include/region.h
rosat.o: $(DERVISH_DIR)/include/shCAlign.h
rosat.o: $(DERVISH_DIR)/include/shCSchema.h
rosat.o: $(DERVISH_DIR)/include/shCHdr.h
rosat.o: $(DERVISH_DIR)/include/shC.h
rosat.o: $(DERVISH_DIR)/include/shChain.h
rosat.o: $(DERVISH_DIR)/include/shCArray.h
rosat.o: $(DERVISH_DIR)/include/shCVecExpr.h
rosat.o: $(DERVISH_DIR)/include/shCUtils.h
rosat.o: $(DERVISH_DIR)/include/shCErrStack.h
rosat.o: $(DERVISH_DIR)/include/shTclErrStack.h
rosat.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
rosat.o: $(DERVISH_DIR)/include/shTclHandle.h
rosat.o: $(DERVISH_DIR)/include/shCList.h
rosat.o: $(DERVISH_DIR)/include/shCTbl.h
rosat.o: $(LIBFITS_DIR)/src/libfits.h
rosat.o: $(DERVISH_DIR)/include/shCFitsIo.h
rosat.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
rosat.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
rosat.o: $(DERVISH_DIR)/include/shCFits.h
rosat.o: $(DERVISH_DIR)/include/shCMaskUtils.h
rosat.o: $(DERVISH_DIR)/include/shCRegUtils.h
rosat.o: $(DERVISH_DIR)/include/shCRegPrint.h
rosat.o: $(DERVISH_DIR)/include/shCHash.h
rosat.o: $(DERVISH_DIR)/include/shCAssert.h
rosat.o: $(DERVISH_DIR)/include/shCEnvscan.h
rosat.o: $(DERVISH_DIR)/include/shTclRegSupport.h
rosat.o: $(DERVISH_DIR)/include/shCSao.h
rosat.o: $(DERVISH_DIR)/include/imtool.h
rosat.o: $(DERVISH_DIR)/include/shTclParseArgv.h
rosat.o: $(DERVISH_DIR)/include/shTclVerbs.h
rosat.o: $(DERVISH_DIR)/include/shTclSao.h
rosat.o: $(FTCL_DIR)/include/ftclCmdLine.h
rosat.o: $(DERVISH_DIR)/include/shTclUtils.h
rosat.o: $(DERVISH_DIR)/include/shTk.h
rosat.o: $(DERVISH_DIR)/include/shCGarbage.h
rosat.o: $(DERVISH_DIR)/include/shCHg.h
rosat.o: $(DERVISH_DIR)/include/shCLink.h
rosat.o: $(DERVISH_DIR)/include/shCLut.h
rosat.o: $(DERVISH_DIR)/include/shCVecChain.h
rosat.o: $(DERVISH_DIR)/include/shCDemo.h
rosat.o: $(DERVISH_DIR)/include/shCDiskio.h
rosat.o: $(DERVISH_DIR)/include/shCHist.h
rosat.o: $(DERVISH_DIR)/include/shCMask.h
rosat.o: $(DERVISH_DIR)/include/shCMemory.h
rosat.o: $(DERVISH_DIR)/include/shCRegPhysical.h
rosat.o: $(DERVISH_DIR)/include/shTclAlign.h
rosat.o: $(DERVISH_DIR)/include/shTclArray.h
rosat.o: $(DERVISH_DIR)/include/shTclFits.h
rosat.o: $(DERVISH_DIR)/include/shTclHdr.h
rosat.o: $(DERVISH_DIR)/include/shTclSupport.h
rosat.o: $(DERVISH_DIR)/include/shTclTree.h
rosat.o: ../include/taCalibObj.h
rosat.o: $(ASTROTOOLS_DIR)/include/astrotools.h
rosat.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
rosat.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
rosat.o: $(ASTROTOOLS_DIR)/include/atTrans.h
rosat.o: $(SDSSMATH_DIR)/include/sdssmath.h
rosat.o: $(SDSSMATH_DIR)/include/tclMath.h
rosat.o: $(SDSSMATH_DIR)/include/slatec.h
rosat.o: $(SDSSMATH_DIR)/include/smaFunc.h
rosat.o: $(SDSSMATH_DIR)/include/smaFft.h
rosat.o: $(FFTW_DIR)/src/fftw.h
rosat.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
rosat.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
rosat.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
rosat.o: $(ASTROTOOLS_DIR)/include/atConversions.h
rosat.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
rosat.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
rosat.o: $(ASTROTOOLS_DIR)/include/atObject.h
rosat.o: $(ASTROTOOLS_DIR)/include/atGauss.h
rosat.o: $(ASTROTOOLS_DIR)/include/atImSim.h
rosat.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
rosat.o: $(ASTROTOOLS_DIR)/include/atCali.h
rosat.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
rosat.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
rosat.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
rosat.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
rosat.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
rosat.o: $(ASTROTOOLS_DIR)/include/atAperture.h
rosat.o: ../common/arObjectType.h
rosat.o: ../common/arPSFStatus.h
rosat.o: ../include/taRosat.h
rosat.o: ../common/arTargetType.h
rosat.o: ../common/arDetectionFlag.h
rosat.o: ../common/arObjectStatus.h
serendipity.o: serendipity.c
serendipity.o: $(DERVISH_DIR)/include/dervish.h
serendipity.o: $(TCLX_DIR)/include/tclExtend.h
serendipity.o: $(TCL_DIR)/include/tcl.h
serendipity.o: $(FTCL_DIR)/include/ftcl.h
serendipity.o: $(FTCL_DIR)/include/ftclParseArgv.h
serendipity.o: $(DERVISH_DIR)/include/dervish_msg_c.h
serendipity.o: $(DERVISH_DIR)/include/region.h
serendipity.o: $(DERVISH_DIR)/include/shCAlign.h
serendipity.o: $(DERVISH_DIR)/include/shCSchema.h
serendipity.o: $(DERVISH_DIR)/include/shCHdr.h
serendipity.o: $(DERVISH_DIR)/include/shC.h
serendipity.o: $(DERVISH_DIR)/include/shChain.h
serendipity.o: $(DERVISH_DIR)/include/shCArray.h
serendipity.o: $(DERVISH_DIR)/include/shCVecExpr.h
serendipity.o: $(DERVISH_DIR)/include/shCUtils.h
serendipity.o: $(DERVISH_DIR)/include/shCErrStack.h
serendipity.o: $(DERVISH_DIR)/include/shTclErrStack.h
serendipity.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
serendipity.o: $(DERVISH_DIR)/include/shTclHandle.h
serendipity.o: $(DERVISH_DIR)/include/shCList.h
serendipity.o: $(DERVISH_DIR)/include/shCTbl.h
serendipity.o: $(LIBFITS_DIR)/src/libfits.h
serendipity.o: $(DERVISH_DIR)/include/shCFitsIo.h
serendipity.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
serendipity.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
serendipity.o: $(DERVISH_DIR)/include/shCFits.h
serendipity.o: $(DERVISH_DIR)/include/shCMaskUtils.h
serendipity.o: $(DERVISH_DIR)/include/shCRegUtils.h
serendipity.o: $(DERVISH_DIR)/include/shCRegPrint.h
serendipity.o: $(DERVISH_DIR)/include/shCHash.h
serendipity.o: $(DERVISH_DIR)/include/shCAssert.h
serendipity.o: $(DERVISH_DIR)/include/shCEnvscan.h
serendipity.o: $(DERVISH_DIR)/include/shTclRegSupport.h
serendipity.o: $(DERVISH_DIR)/include/shCSao.h
serendipity.o: $(DERVISH_DIR)/include/imtool.h
serendipity.o: $(DERVISH_DIR)/include/shTclParseArgv.h
serendipity.o: $(DERVISH_DIR)/include/shTclVerbs.h
serendipity.o: $(DERVISH_DIR)/include/shTclSao.h
serendipity.o: $(FTCL_DIR)/include/ftclCmdLine.h
serendipity.o: $(DERVISH_DIR)/include/shTclUtils.h
serendipity.o: $(DERVISH_DIR)/include/shTk.h
serendipity.o: $(DERVISH_DIR)/include/shCGarbage.h
serendipity.o: $(DERVISH_DIR)/include/shCHg.h
serendipity.o: $(DERVISH_DIR)/include/shCLink.h
serendipity.o: $(DERVISH_DIR)/include/shCLut.h
serendipity.o: $(DERVISH_DIR)/include/shCVecChain.h
serendipity.o: $(DERVISH_DIR)/include/shCDemo.h
serendipity.o: $(DERVISH_DIR)/include/shCDiskio.h
serendipity.o: $(DERVISH_DIR)/include/shCHist.h
serendipity.o: $(DERVISH_DIR)/include/shCMask.h
serendipity.o: $(DERVISH_DIR)/include/shCMemory.h
serendipity.o: $(DERVISH_DIR)/include/shCRegPhysical.h
serendipity.o: $(DERVISH_DIR)/include/shTclAlign.h
serendipity.o: $(DERVISH_DIR)/include/shTclArray.h
serendipity.o: $(DERVISH_DIR)/include/shTclFits.h
serendipity.o: $(DERVISH_DIR)/include/shTclHdr.h
serendipity.o: $(DERVISH_DIR)/include/shTclSupport.h
serendipity.o: $(DERVISH_DIR)/include/shTclTree.h
serendipity.o: ../include/taCalibObj.h
serendipity.o: $(ASTROTOOLS_DIR)/include/astrotools.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atTrans.h
serendipity.o: $(SDSSMATH_DIR)/include/sdssmath.h
serendipity.o: $(SDSSMATH_DIR)/include/tclMath.h
serendipity.o: $(SDSSMATH_DIR)/include/slatec.h
serendipity.o: $(SDSSMATH_DIR)/include/smaFunc.h
serendipity.o: $(SDSSMATH_DIR)/include/smaFft.h
serendipity.o: $(FFTW_DIR)/src/fftw.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atConversions.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atObject.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atGauss.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atImSim.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atCali.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
serendipity.o: $(ASTROTOOLS_DIR)/include/atAperture.h
serendipity.o: ../common/arObjectType.h
serendipity.o: ../common/arPSFStatus.h
serendipity.o: ../include/taSerendipity.h
serendipity.o: ../common/arTargetType.h
serendipity.o: ../common/arDetectionFlag.h
serendipity.o: ../common/arObjectStatus.h
standards.o: standards.c
standards.o: $(DERVISH_DIR)/include/dervish.h
standards.o: $(TCLX_DIR)/include/tclExtend.h
standards.o: $(TCL_DIR)/include/tcl.h
standards.o: $(FTCL_DIR)/include/ftcl.h
standards.o: $(FTCL_DIR)/include/ftclParseArgv.h
standards.o: $(DERVISH_DIR)/include/dervish_msg_c.h
standards.o: $(DERVISH_DIR)/include/region.h
standards.o: $(DERVISH_DIR)/include/shCAlign.h
standards.o: $(DERVISH_DIR)/include/shCSchema.h
standards.o: $(DERVISH_DIR)/include/shCHdr.h
standards.o: $(DERVISH_DIR)/include/shC.h
standards.o: $(DERVISH_DIR)/include/shChain.h
standards.o: $(DERVISH_DIR)/include/shCArray.h
standards.o: $(DERVISH_DIR)/include/shCVecExpr.h
standards.o: $(DERVISH_DIR)/include/shCUtils.h
standards.o: $(DERVISH_DIR)/include/shCErrStack.h
standards.o: $(DERVISH_DIR)/include/shTclErrStack.h
standards.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
standards.o: $(DERVISH_DIR)/include/shTclHandle.h
standards.o: $(DERVISH_DIR)/include/shCList.h
standards.o: $(DERVISH_DIR)/include/shCTbl.h
standards.o: $(LIBFITS_DIR)/src/libfits.h
standards.o: $(DERVISH_DIR)/include/shCFitsIo.h
standards.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
standards.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
standards.o: $(DERVISH_DIR)/include/shCFits.h
standards.o: $(DERVISH_DIR)/include/shCMaskUtils.h
standards.o: $(DERVISH_DIR)/include/shCRegUtils.h
standards.o: $(DERVISH_DIR)/include/shCRegPrint.h
standards.o: $(DERVISH_DIR)/include/shCHash.h
standards.o: $(DERVISH_DIR)/include/shCAssert.h
standards.o: $(DERVISH_DIR)/include/shCEnvscan.h
standards.o: $(DERVISH_DIR)/include/shTclRegSupport.h
standards.o: $(DERVISH_DIR)/include/shCSao.h
standards.o: $(DERVISH_DIR)/include/imtool.h
standards.o: $(DERVISH_DIR)/include/shTclParseArgv.h
standards.o: $(DERVISH_DIR)/include/shTclVerbs.h
standards.o: $(DERVISH_DIR)/include/shTclSao.h
standards.o: $(FTCL_DIR)/include/ftclCmdLine.h
standards.o: $(DERVISH_DIR)/include/shTclUtils.h
standards.o: $(DERVISH_DIR)/include/shTk.h
standards.o: $(DERVISH_DIR)/include/shCGarbage.h
standards.o: $(DERVISH_DIR)/include/shCHg.h
standards.o: $(DERVISH_DIR)/include/shCLink.h
standards.o: $(DERVISH_DIR)/include/shCLut.h
standards.o: $(DERVISH_DIR)/include/shCVecChain.h
standards.o: $(DERVISH_DIR)/include/shCDemo.h
standards.o: $(DERVISH_DIR)/include/shCDiskio.h
standards.o: $(DERVISH_DIR)/include/shCHist.h
standards.o: $(DERVISH_DIR)/include/shCMask.h
standards.o: $(DERVISH_DIR)/include/shCMemory.h
standards.o: $(DERVISH_DIR)/include/shCRegPhysical.h
standards.o: $(DERVISH_DIR)/include/shTclAlign.h
standards.o: $(DERVISH_DIR)/include/shTclArray.h
standards.o: $(DERVISH_DIR)/include/shTclFits.h
standards.o: $(DERVISH_DIR)/include/shTclHdr.h
standards.o: $(DERVISH_DIR)/include/shTclSupport.h
standards.o: $(DERVISH_DIR)/include/shTclTree.h
standards.o: ../include/taCalibObj.h
standards.o: $(ASTROTOOLS_DIR)/include/astrotools.h
standards.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
standards.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
standards.o: $(ASTROTOOLS_DIR)/include/atTrans.h
standards.o: $(SDSSMATH_DIR)/include/sdssmath.h
standards.o: $(SDSSMATH_DIR)/include/tclMath.h
standards.o: $(SDSSMATH_DIR)/include/slatec.h
standards.o: $(SDSSMATH_DIR)/include/smaFunc.h
standards.o: $(SDSSMATH_DIR)/include/smaFft.h
standards.o: $(FFTW_DIR)/src/fftw.h
standards.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
standards.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
standards.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
standards.o: $(ASTROTOOLS_DIR)/include/atConversions.h
standards.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
standards.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
standards.o: $(ASTROTOOLS_DIR)/include/atObject.h
standards.o: $(ASTROTOOLS_DIR)/include/atGauss.h
standards.o: $(ASTROTOOLS_DIR)/include/atImSim.h
standards.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
standards.o: $(ASTROTOOLS_DIR)/include/atCali.h
standards.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
standards.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
standards.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
standards.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
standards.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
standards.o: $(ASTROTOOLS_DIR)/include/atAperture.h
standards.o: ../common/arObjectType.h
standards.o: ../common/arPSFStatus.h
standards.o: ../include/taStandards.h
standards.o: ../common/arTargetType.h
standards.o: ../common/arDetectionFlag.h
standards.o: ../common/arObjectStatus.h
stars.o: stars.c
stars.o: $(DERVISH_DIR)/include/dervish.h
stars.o: $(TCLX_DIR)/include/tclExtend.h
stars.o: $(TCL_DIR)/include/tcl.h
stars.o: $(FTCL_DIR)/include/ftcl.h
stars.o: $(FTCL_DIR)/include/ftclParseArgv.h
stars.o: $(DERVISH_DIR)/include/dervish_msg_c.h
stars.o: $(DERVISH_DIR)/include/region.h
stars.o: $(DERVISH_DIR)/include/shCAlign.h
stars.o: $(DERVISH_DIR)/include/shCSchema.h
stars.o: $(DERVISH_DIR)/include/shCHdr.h
stars.o: $(DERVISH_DIR)/include/shC.h
stars.o: $(DERVISH_DIR)/include/shChain.h
stars.o: $(DERVISH_DIR)/include/shCArray.h
stars.o: $(DERVISH_DIR)/include/shCVecExpr.h
stars.o: $(DERVISH_DIR)/include/shCUtils.h
stars.o: $(DERVISH_DIR)/include/shCErrStack.h
stars.o: $(DERVISH_DIR)/include/shTclErrStack.h
stars.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
stars.o: $(DERVISH_DIR)/include/shTclHandle.h
stars.o: $(DERVISH_DIR)/include/shCList.h
stars.o: $(DERVISH_DIR)/include/shCTbl.h
stars.o: $(LIBFITS_DIR)/src/libfits.h
stars.o: $(DERVISH_DIR)/include/shCFitsIo.h
stars.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
stars.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
stars.o: $(DERVISH_DIR)/include/shCFits.h
stars.o: $(DERVISH_DIR)/include/shCMaskUtils.h
stars.o: $(DERVISH_DIR)/include/shCRegUtils.h
stars.o: $(DERVISH_DIR)/include/shCRegPrint.h
stars.o: $(DERVISH_DIR)/include/shCHash.h
stars.o: $(DERVISH_DIR)/include/shCAssert.h
stars.o: $(DERVISH_DIR)/include/shCEnvscan.h
stars.o: $(DERVISH_DIR)/include/shTclRegSupport.h
stars.o: $(DERVISH_DIR)/include/shCSao.h
stars.o: $(DERVISH_DIR)/include/imtool.h
stars.o: $(DERVISH_DIR)/include/shTclParseArgv.h
stars.o: $(DERVISH_DIR)/include/shTclVerbs.h
stars.o: $(DERVISH_DIR)/include/shTclSao.h
stars.o: $(FTCL_DIR)/include/ftclCmdLine.h
stars.o: $(DERVISH_DIR)/include/shTclUtils.h
stars.o: $(DERVISH_DIR)/include/shTk.h
stars.o: $(DERVISH_DIR)/include/shCGarbage.h
stars.o: $(DERVISH_DIR)/include/shCHg.h
stars.o: $(DERVISH_DIR)/include/shCLink.h
stars.o: $(DERVISH_DIR)/include/shCLut.h
stars.o: $(DERVISH_DIR)/include/shCVecChain.h
stars.o: $(DERVISH_DIR)/include/shCDemo.h
stars.o: $(DERVISH_DIR)/include/shCDiskio.h
stars.o: $(DERVISH_DIR)/include/shCHist.h
stars.o: $(DERVISH_DIR)/include/shCMask.h
stars.o: $(DERVISH_DIR)/include/shCMemory.h
stars.o: $(DERVISH_DIR)/include/shCRegPhysical.h
stars.o: $(DERVISH_DIR)/include/shTclAlign.h
stars.o: $(DERVISH_DIR)/include/shTclArray.h
stars.o: $(DERVISH_DIR)/include/shTclFits.h
stars.o: $(DERVISH_DIR)/include/shTclHdr.h
stars.o: $(DERVISH_DIR)/include/shTclSupport.h
stars.o: $(DERVISH_DIR)/include/shTclTree.h
stars.o: ../include/taCalibObj.h
stars.o: $(ASTROTOOLS_DIR)/include/astrotools.h
stars.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
stars.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
stars.o: $(ASTROTOOLS_DIR)/include/atTrans.h
stars.o: $(SDSSMATH_DIR)/include/sdssmath.h
stars.o: $(SDSSMATH_DIR)/include/tclMath.h
stars.o: $(SDSSMATH_DIR)/include/slatec.h
stars.o: $(SDSSMATH_DIR)/include/smaFunc.h
stars.o: $(SDSSMATH_DIR)/include/smaFft.h
stars.o: $(FFTW_DIR)/src/fftw.h
stars.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
stars.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
stars.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
stars.o: $(ASTROTOOLS_DIR)/include/atConversions.h
stars.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
stars.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
stars.o: $(ASTROTOOLS_DIR)/include/atObject.h
stars.o: $(ASTROTOOLS_DIR)/include/atGauss.h
stars.o: $(ASTROTOOLS_DIR)/include/atImSim.h
stars.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
stars.o: $(ASTROTOOLS_DIR)/include/atCali.h
stars.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
stars.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
stars.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
stars.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
stars.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
stars.o: $(ASTROTOOLS_DIR)/include/atAperture.h
stars.o: ../common/arObjectType.h
stars.o: ../common/arPSFStatus.h
stars.o: ../include/taStars.h
stars.o: ../common/arTargetType.h
stars.o: ../common/arDetectionFlag.h
stars.o: ../common/arObjectStatus.h
taTclDeclare.o: taTclDeclare.c
taTclDeclare.o: $(DERVISH_DIR)/include/dervish.h
taTclDeclare.o: $(TCLX_DIR)/include/tclExtend.h
taTclDeclare.o: $(TCL_DIR)/include/tcl.h
taTclDeclare.o: $(FTCL_DIR)/include/ftcl.h
taTclDeclare.o: $(FTCL_DIR)/include/ftclParseArgv.h
taTclDeclare.o: $(DERVISH_DIR)/include/dervish_msg_c.h
taTclDeclare.o: $(DERVISH_DIR)/include/region.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCAlign.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCSchema.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCHdr.h
taTclDeclare.o: $(DERVISH_DIR)/include/shC.h
taTclDeclare.o: $(DERVISH_DIR)/include/shChain.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCArray.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCVecExpr.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCUtils.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCErrStack.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclErrStack.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclHandle.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCList.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCTbl.h
taTclDeclare.o: $(LIBFITS_DIR)/src/libfits.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCFitsIo.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCFits.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCMaskUtils.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCRegUtils.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCRegPrint.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCHash.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCAssert.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCEnvscan.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclRegSupport.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCSao.h
taTclDeclare.o: $(DERVISH_DIR)/include/imtool.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclParseArgv.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclVerbs.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclSao.h
taTclDeclare.o: $(FTCL_DIR)/include/ftclCmdLine.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclUtils.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTk.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCGarbage.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCHg.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCLink.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCLut.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCVecChain.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCDemo.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCDiskio.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCHist.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCMask.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCMemory.h
taTclDeclare.o: $(DERVISH_DIR)/include/shCRegPhysical.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclAlign.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclArray.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclFits.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclHdr.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclSupport.h
taTclDeclare.o: $(DERVISH_DIR)/include/shTclTree.h
target.o: target.c
target.o: $(DERVISH_DIR)/include/dervish.h
target.o: $(TCLX_DIR)/include/tclExtend.h
target.o: $(TCL_DIR)/include/tcl.h
target.o: $(FTCL_DIR)/include/ftcl.h
target.o: $(FTCL_DIR)/include/ftclParseArgv.h
target.o: $(DERVISH_DIR)/include/dervish_msg_c.h
target.o: $(DERVISH_DIR)/include/region.h
target.o: $(DERVISH_DIR)/include/shCAlign.h
target.o: $(DERVISH_DIR)/include/shCSchema.h
target.o: $(DERVISH_DIR)/include/shCHdr.h
target.o: $(DERVISH_DIR)/include/shC.h
target.o: $(DERVISH_DIR)/include/shChain.h
target.o: $(DERVISH_DIR)/include/shCArray.h
target.o: $(DERVISH_DIR)/include/shCVecExpr.h
target.o: $(DERVISH_DIR)/include/shCUtils.h
target.o: $(DERVISH_DIR)/include/shCErrStack.h
target.o: $(DERVISH_DIR)/include/shTclErrStack.h
target.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
target.o: $(DERVISH_DIR)/include/shTclHandle.h
target.o: $(DERVISH_DIR)/include/shCList.h
target.o: $(DERVISH_DIR)/include/shCTbl.h
target.o: $(LIBFITS_DIR)/src/libfits.h
target.o: $(DERVISH_DIR)/include/shCFitsIo.h
target.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
target.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
target.o: $(DERVISH_DIR)/include/shCFits.h
target.o: $(DERVISH_DIR)/include/shCMaskUtils.h
target.o: $(DERVISH_DIR)/include/shCRegUtils.h
target.o: $(DERVISH_DIR)/include/shCRegPrint.h
target.o: $(DERVISH_DIR)/include/shCHash.h
target.o: $(DERVISH_DIR)/include/shCAssert.h
target.o: $(DERVISH_DIR)/include/shCEnvscan.h
target.o: $(DERVISH_DIR)/include/shTclRegSupport.h
target.o: $(DERVISH_DIR)/include/shCSao.h
target.o: $(DERVISH_DIR)/include/imtool.h
target.o: $(DERVISH_DIR)/include/shTclParseArgv.h
target.o: $(DERVISH_DIR)/include/shTclVerbs.h
target.o: $(DERVISH_DIR)/include/shTclSao.h
target.o: $(FTCL_DIR)/include/ftclCmdLine.h
target.o: $(DERVISH_DIR)/include/shTclUtils.h
target.o: $(DERVISH_DIR)/include/shTk.h
target.o: $(DERVISH_DIR)/include/shCGarbage.h
target.o: $(DERVISH_DIR)/include/shCHg.h
target.o: $(DERVISH_DIR)/include/shCLink.h
target.o: $(DERVISH_DIR)/include/shCLut.h
target.o: $(DERVISH_DIR)/include/shCVecChain.h
target.o: $(DERVISH_DIR)/include/shCDemo.h
target.o: $(DERVISH_DIR)/include/shCDiskio.h
target.o: $(DERVISH_DIR)/include/shCHist.h
target.o: $(DERVISH_DIR)/include/shCMask.h
target.o: $(DERVISH_DIR)/include/shCMemory.h
target.o: $(DERVISH_DIR)/include/shCRegPhysical.h
target.o: $(DERVISH_DIR)/include/shTclAlign.h
target.o: $(DERVISH_DIR)/include/shTclArray.h
target.o: $(DERVISH_DIR)/include/shTclFits.h
target.o: $(DERVISH_DIR)/include/shTclHdr.h
target.o: $(DERVISH_DIR)/include/shTclSupport.h
target.o: $(DERVISH_DIR)/include/shTclTree.h
target.o: ../include/taCalibObj.h
target.o: $(ASTROTOOLS_DIR)/include/astrotools.h
target.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
target.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
target.o: $(ASTROTOOLS_DIR)/include/atTrans.h
target.o: $(SDSSMATH_DIR)/include/sdssmath.h
target.o: $(SDSSMATH_DIR)/include/tclMath.h
target.o: $(SDSSMATH_DIR)/include/slatec.h
target.o: $(SDSSMATH_DIR)/include/smaFunc.h
target.o: $(SDSSMATH_DIR)/include/smaFft.h
target.o: $(FFTW_DIR)/src/fftw.h
target.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
target.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
target.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
target.o: $(ASTROTOOLS_DIR)/include/atConversions.h
target.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
target.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
target.o: $(ASTROTOOLS_DIR)/include/atObject.h
target.o: $(ASTROTOOLS_DIR)/include/atGauss.h
target.o: $(ASTROTOOLS_DIR)/include/atImSim.h
target.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
target.o: $(ASTROTOOLS_DIR)/include/atCali.h
target.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
target.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
target.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
target.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
target.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
target.o: $(ASTROTOOLS_DIR)/include/atAperture.h
target.o: ../common/arObjectType.h
target.o: ../common/arPSFStatus.h
target.o: ../common/arObjectStatus.h
target.o: ../common/arTargetType.h
target.o: ../include/taQuasars.h
target.o: ../include/taGalaxies.h
target.o: ../include/taStars.h
target.o: ../include/taSerendipity.h
target.o: ../common/arDetectionFlag.h
target.o: ../include/taStandards.h
target.o: ../include/taTarget.h
target.o: ../include/taCatalogs.h
target.o: ../include/taRosat.h
tclCalibrate.o: tclCalibrate.c
tclCalibrate.o: $(DERVISH_DIR)/include/dervish.h
tclCalibrate.o: $(TCLX_DIR)/include/tclExtend.h
tclCalibrate.o: $(TCL_DIR)/include/tcl.h
tclCalibrate.o: $(FTCL_DIR)/include/ftcl.h
tclCalibrate.o: $(FTCL_DIR)/include/ftclParseArgv.h
tclCalibrate.o: $(DERVISH_DIR)/include/dervish_msg_c.h
tclCalibrate.o: $(DERVISH_DIR)/include/region.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCAlign.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCSchema.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCHdr.h
tclCalibrate.o: $(DERVISH_DIR)/include/shC.h
tclCalibrate.o: $(DERVISH_DIR)/include/shChain.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCArray.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCVecExpr.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCUtils.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCErrStack.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclErrStack.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclHandle.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCList.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCTbl.h
tclCalibrate.o: $(LIBFITS_DIR)/src/libfits.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCFitsIo.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCFits.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCMaskUtils.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCRegUtils.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCRegPrint.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCHash.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCAssert.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCEnvscan.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclRegSupport.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCSao.h
tclCalibrate.o: $(DERVISH_DIR)/include/imtool.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclParseArgv.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclVerbs.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclSao.h
tclCalibrate.o: $(FTCL_DIR)/include/ftclCmdLine.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclUtils.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTk.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCGarbage.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCHg.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCLink.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCLut.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCVecChain.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCDemo.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCDiskio.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCHist.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCMask.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCMemory.h
tclCalibrate.o: $(DERVISH_DIR)/include/shCRegPhysical.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclAlign.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclArray.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclFits.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclHdr.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclSupport.h
tclCalibrate.o: $(DERVISH_DIR)/include/shTclTree.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/astrotools.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atTrans.h
tclCalibrate.o: $(SDSSMATH_DIR)/include/sdssmath.h
tclCalibrate.o: $(SDSSMATH_DIR)/include/tclMath.h
tclCalibrate.o: $(SDSSMATH_DIR)/include/slatec.h
tclCalibrate.o: $(SDSSMATH_DIR)/include/smaFunc.h
tclCalibrate.o: $(SDSSMATH_DIR)/include/smaFft.h
tclCalibrate.o: $(FFTW_DIR)/src/fftw.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atConversions.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atObject.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atGauss.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atImSim.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atCali.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
tclCalibrate.o: $(ASTROTOOLS_DIR)/include/atAperture.h
tclCalibrate.o: ../include/taCalibObj.h
tclCalibrate.o: ../common/arObjectType.h
tclCalibrate.o: ../common/arPSFStatus.h
tclCalibrate.o: ../common/arObjectStatus.h
tclCalibrate.o: ../common/arDetectionFlag.h
tclCalibrate.o: ../include/taCosmic.h
tclCatalogs.o: tclCatalogs.c
tclCatalogs.o: ../include/taCatalogs.h
tclCatalogs.o: $(DERVISH_DIR)/include/dervish.h
tclCatalogs.o: $(TCLX_DIR)/include/tclExtend.h
tclCatalogs.o: $(TCL_DIR)/include/tcl.h
tclCatalogs.o: $(FTCL_DIR)/include/ftcl.h
tclCatalogs.o: $(FTCL_DIR)/include/ftclParseArgv.h
tclCatalogs.o: $(DERVISH_DIR)/include/dervish_msg_c.h
tclCatalogs.o: $(DERVISH_DIR)/include/region.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCAlign.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCSchema.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCHdr.h
tclCatalogs.o: $(DERVISH_DIR)/include/shC.h
tclCatalogs.o: $(DERVISH_DIR)/include/shChain.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCArray.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCVecExpr.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCUtils.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCErrStack.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclErrStack.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclHandle.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCList.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCTbl.h
tclCatalogs.o: $(LIBFITS_DIR)/src/libfits.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCFitsIo.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCFits.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCMaskUtils.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCRegUtils.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCRegPrint.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCHash.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCAssert.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCEnvscan.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclRegSupport.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCSao.h
tclCatalogs.o: $(DERVISH_DIR)/include/imtool.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclParseArgv.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclVerbs.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclSao.h
tclCatalogs.o: $(FTCL_DIR)/include/ftclCmdLine.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclUtils.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTk.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCGarbage.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCHg.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCLink.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCLut.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCVecChain.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCDemo.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCDiskio.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCHist.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCMask.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCMemory.h
tclCatalogs.o: $(DERVISH_DIR)/include/shCRegPhysical.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclAlign.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclArray.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclFits.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclHdr.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclSupport.h
tclCatalogs.o: $(DERVISH_DIR)/include/shTclTree.h
tclCatalogs.o: ../include/taCalibObj.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/astrotools.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atTrans.h
tclCatalogs.o: $(SDSSMATH_DIR)/include/sdssmath.h
tclCatalogs.o: $(SDSSMATH_DIR)/include/tclMath.h
tclCatalogs.o: $(SDSSMATH_DIR)/include/slatec.h
tclCatalogs.o: $(SDSSMATH_DIR)/include/smaFunc.h
tclCatalogs.o: $(SDSSMATH_DIR)/include/smaFft.h
tclCatalogs.o: $(FFTW_DIR)/src/fftw.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atConversions.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atObject.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atGauss.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atImSim.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atCali.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
tclCatalogs.o: $(ASTROTOOLS_DIR)/include/atAperture.h
tclCatalogs.o: ../common/arObjectType.h
tclCatalogs.o: ../common/arPSFStatus.h
tclCompletetile.o: tclCompletetile.c
tclCompletetile.o: $(DERVISH_DIR)/include/dervish.h
tclCompletetile.o: $(TCLX_DIR)/include/tclExtend.h
tclCompletetile.o: $(TCL_DIR)/include/tcl.h
tclCompletetile.o: $(FTCL_DIR)/include/ftcl.h
tclCompletetile.o: $(FTCL_DIR)/include/ftclParseArgv.h
tclCompletetile.o: $(DERVISH_DIR)/include/dervish_msg_c.h
tclCompletetile.o: $(DERVISH_DIR)/include/region.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCAlign.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCSchema.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCHdr.h
tclCompletetile.o: $(DERVISH_DIR)/include/shC.h
tclCompletetile.o: $(DERVISH_DIR)/include/shChain.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCArray.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCVecExpr.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCUtils.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCErrStack.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclErrStack.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclHandle.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCList.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCTbl.h
tclCompletetile.o: $(LIBFITS_DIR)/src/libfits.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCFitsIo.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCFits.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCMaskUtils.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCRegUtils.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCRegPrint.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCHash.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCAssert.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCEnvscan.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclRegSupport.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCSao.h
tclCompletetile.o: $(DERVISH_DIR)/include/imtool.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclParseArgv.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclVerbs.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclSao.h
tclCompletetile.o: $(FTCL_DIR)/include/ftclCmdLine.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclUtils.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTk.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCGarbage.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCHg.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCLink.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCLut.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCVecChain.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCDemo.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCDiskio.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCHist.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCMask.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCMemory.h
tclCompletetile.o: $(DERVISH_DIR)/include/shCRegPhysical.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclAlign.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclArray.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclFits.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclHdr.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclSupport.h
tclCompletetile.o: $(DERVISH_DIR)/include/shTclTree.h
tclCompletetile.o: ../include/taCompletetile.h
tclCompletetile.o: ../include/taTargetObj.h
tclCompletetile.o: ../include/taPlugMapObj.h
tclIO.o: tclIO.c
tclIO.o: $(DERVISH_DIR)/include/dervish.h
tclIO.o: $(TCLX_DIR)/include/tclExtend.h
tclIO.o: $(TCL_DIR)/include/tcl.h
tclIO.o: $(FTCL_DIR)/include/ftcl.h
tclIO.o: $(FTCL_DIR)/include/ftclParseArgv.h
tclIO.o: $(DERVISH_DIR)/include/dervish_msg_c.h
tclIO.o: $(DERVISH_DIR)/include/region.h
tclIO.o: $(DERVISH_DIR)/include/shCAlign.h
tclIO.o: $(DERVISH_DIR)/include/shCSchema.h
tclIO.o: $(DERVISH_DIR)/include/shCHdr.h
tclIO.o: $(DERVISH_DIR)/include/shC.h
tclIO.o: $(DERVISH_DIR)/include/shChain.h
tclIO.o: $(DERVISH_DIR)/include/shCArray.h
tclIO.o: $(DERVISH_DIR)/include/shCVecExpr.h
tclIO.o: $(DERVISH_DIR)/include/shCUtils.h
tclIO.o: $(DERVISH_DIR)/include/shCErrStack.h
tclIO.o: $(DERVISH_DIR)/include/shTclErrStack.h
tclIO.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
tclIO.o: $(DERVISH_DIR)/include/shTclHandle.h
tclIO.o: $(DERVISH_DIR)/include/shCList.h
tclIO.o: $(DERVISH_DIR)/include/shCTbl.h
tclIO.o: $(LIBFITS_DIR)/src/libfits.h
tclIO.o: $(DERVISH_DIR)/include/shCFitsIo.h
tclIO.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
tclIO.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
tclIO.o: $(DERVISH_DIR)/include/shCFits.h
tclIO.o: $(DERVISH_DIR)/include/shCMaskUtils.h
tclIO.o: $(DERVISH_DIR)/include/shCRegUtils.h
tclIO.o: $(DERVISH_DIR)/include/shCRegPrint.h
tclIO.o: $(DERVISH_DIR)/include/shCHash.h
tclIO.o: $(DERVISH_DIR)/include/shCAssert.h
tclIO.o: $(DERVISH_DIR)/include/shCEnvscan.h
tclIO.o: $(DERVISH_DIR)/include/shTclRegSupport.h
tclIO.o: $(DERVISH_DIR)/include/shCSao.h
tclIO.o: $(DERVISH_DIR)/include/imtool.h
tclIO.o: $(DERVISH_DIR)/include/shTclParseArgv.h
tclIO.o: $(DERVISH_DIR)/include/shTclVerbs.h
tclIO.o: $(DERVISH_DIR)/include/shTclSao.h
tclIO.o: $(FTCL_DIR)/include/ftclCmdLine.h
tclIO.o: $(DERVISH_DIR)/include/shTclUtils.h
tclIO.o: $(DERVISH_DIR)/include/shTk.h
tclIO.o: $(DERVISH_DIR)/include/shCGarbage.h
tclIO.o: $(DERVISH_DIR)/include/shCHg.h
tclIO.o: $(DERVISH_DIR)/include/shCLink.h
tclIO.o: $(DERVISH_DIR)/include/shCLut.h
tclIO.o: $(DERVISH_DIR)/include/shCVecChain.h
tclIO.o: $(DERVISH_DIR)/include/shCDemo.h
tclIO.o: $(DERVISH_DIR)/include/shCDiskio.h
tclIO.o: $(DERVISH_DIR)/include/shCHist.h
tclIO.o: $(DERVISH_DIR)/include/shCMask.h
tclIO.o: $(DERVISH_DIR)/include/shCMemory.h
tclIO.o: $(DERVISH_DIR)/include/shCRegPhysical.h
tclIO.o: $(DERVISH_DIR)/include/shTclAlign.h
tclIO.o: $(DERVISH_DIR)/include/shTclArray.h
tclIO.o: $(DERVISH_DIR)/include/shTclFits.h
tclIO.o: $(DERVISH_DIR)/include/shTclHdr.h
tclIO.o: $(DERVISH_DIR)/include/shTclSupport.h
tclIO.o: $(DERVISH_DIR)/include/shTclTree.h
tclIO.o: ../include/taCalibObj.h
tclIO.o: $(ASTROTOOLS_DIR)/include/astrotools.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atTrans.h
tclIO.o: $(SDSSMATH_DIR)/include/sdssmath.h
tclIO.o: $(SDSSMATH_DIR)/include/tclMath.h
tclIO.o: $(SDSSMATH_DIR)/include/slatec.h
tclIO.o: $(SDSSMATH_DIR)/include/smaFunc.h
tclIO.o: $(SDSSMATH_DIR)/include/smaFft.h
tclIO.o: $(FFTW_DIR)/src/fftw.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atConversions.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atObject.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atGauss.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atImSim.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atCali.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
tclIO.o: $(ASTROTOOLS_DIR)/include/atAperture.h
tclIO.o: ../common/arObjectType.h
tclIO.o: ../common/arPSFStatus.h
tclTarget.o: tclTarget.c
tclTarget.o: ../include/taCalibObj.h
tclTarget.o: $(DERVISH_DIR)/include/dervish.h
tclTarget.o: $(TCLX_DIR)/include/tclExtend.h
tclTarget.o: $(TCL_DIR)/include/tcl.h
tclTarget.o: $(FTCL_DIR)/include/ftcl.h
tclTarget.o: $(FTCL_DIR)/include/ftclParseArgv.h
tclTarget.o: $(DERVISH_DIR)/include/dervish_msg_c.h
tclTarget.o: $(DERVISH_DIR)/include/region.h
tclTarget.o: $(DERVISH_DIR)/include/shCAlign.h
tclTarget.o: $(DERVISH_DIR)/include/shCSchema.h
tclTarget.o: $(DERVISH_DIR)/include/shCHdr.h
tclTarget.o: $(DERVISH_DIR)/include/shC.h
tclTarget.o: $(DERVISH_DIR)/include/shChain.h
tclTarget.o: $(DERVISH_DIR)/include/shCArray.h
tclTarget.o: $(DERVISH_DIR)/include/shCVecExpr.h
tclTarget.o: $(DERVISH_DIR)/include/shCUtils.h
tclTarget.o: $(DERVISH_DIR)/include/shCErrStack.h
tclTarget.o: $(DERVISH_DIR)/include/shTclErrStack.h
tclTarget.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
tclTarget.o: $(DERVISH_DIR)/include/shTclHandle.h
tclTarget.o: $(DERVISH_DIR)/include/shCList.h
tclTarget.o: $(DERVISH_DIR)/include/shCTbl.h
tclTarget.o: $(LIBFITS_DIR)/src/libfits.h
tclTarget.o: $(DERVISH_DIR)/include/shCFitsIo.h
tclTarget.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
tclTarget.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
tclTarget.o: $(DERVISH_DIR)/include/shCFits.h
tclTarget.o: $(DERVISH_DIR)/include/shCMaskUtils.h
tclTarget.o: $(DERVISH_DIR)/include/shCRegUtils.h
tclTarget.o: $(DERVISH_DIR)/include/shCRegPrint.h
tclTarget.o: $(DERVISH_DIR)/include/shCHash.h
tclTarget.o: $(DERVISH_DIR)/include/shCAssert.h
tclTarget.o: $(DERVISH_DIR)/include/shCEnvscan.h
tclTarget.o: $(DERVISH_DIR)/include/shTclRegSupport.h
tclTarget.o: $(DERVISH_DIR)/include/shCSao.h
tclTarget.o: $(DERVISH_DIR)/include/imtool.h
tclTarget.o: $(DERVISH_DIR)/include/shTclParseArgv.h
tclTarget.o: $(DERVISH_DIR)/include/shTclVerbs.h
tclTarget.o: $(DERVISH_DIR)/include/shTclSao.h
tclTarget.o: $(FTCL_DIR)/include/ftclCmdLine.h
tclTarget.o: $(DERVISH_DIR)/include/shTclUtils.h
tclTarget.o: $(DERVISH_DIR)/include/shTk.h
tclTarget.o: $(DERVISH_DIR)/include/shCGarbage.h
tclTarget.o: $(DERVISH_DIR)/include/shCHg.h
tclTarget.o: $(DERVISH_DIR)/include/shCLink.h
tclTarget.o: $(DERVISH_DIR)/include/shCLut.h
tclTarget.o: $(DERVISH_DIR)/include/shCVecChain.h
tclTarget.o: $(DERVISH_DIR)/include/shCDemo.h
tclTarget.o: $(DERVISH_DIR)/include/shCDiskio.h
tclTarget.o: $(DERVISH_DIR)/include/shCHist.h
tclTarget.o: $(DERVISH_DIR)/include/shCMask.h
tclTarget.o: $(DERVISH_DIR)/include/shCMemory.h
tclTarget.o: $(DERVISH_DIR)/include/shCRegPhysical.h
tclTarget.o: $(DERVISH_DIR)/include/shTclAlign.h
tclTarget.o: $(DERVISH_DIR)/include/shTclArray.h
tclTarget.o: $(DERVISH_DIR)/include/shTclFits.h
tclTarget.o: $(DERVISH_DIR)/include/shTclHdr.h
tclTarget.o: $(DERVISH_DIR)/include/shTclSupport.h
tclTarget.o: $(DERVISH_DIR)/include/shTclTree.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/astrotools.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atTrans.h
tclTarget.o: $(SDSSMATH_DIR)/include/sdssmath.h
tclTarget.o: $(SDSSMATH_DIR)/include/tclMath.h
tclTarget.o: $(SDSSMATH_DIR)/include/slatec.h
tclTarget.o: $(SDSSMATH_DIR)/include/smaFunc.h
tclTarget.o: $(SDSSMATH_DIR)/include/smaFft.h
tclTarget.o: $(FFTW_DIR)/src/fftw.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atConversions.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atObject.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atGauss.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atImSim.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atCali.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
tclTarget.o: $(ASTROTOOLS_DIR)/include/atAperture.h
tclTarget.o: ../common/arObjectType.h
tclTarget.o: ../common/arPSFStatus.h
tclTarget.o: ../include/taGalaxies.h
tclTarget.o: ../include/taQuasars.h
tclTarget.o: ../include/taSerendipity.h
tclTarget.o: ../common/arTargetType.h
tclTarget.o: ../common/arDetectionFlag.h
tclTarget.o: ../common/arObjectStatus.h
tclTarget.o: ../include/taStars.h
tclTarget.o: ../include/taCatalogs.h
tclTarget.o: ../include/taStandards.h
tclTarget.o: ../include/taRosat.h
usno.o: usno.c
usno.o: $(DERVISH_DIR)/include/dervish.h
usno.o: $(TCLX_DIR)/include/tclExtend.h
usno.o: $(TCL_DIR)/include/tcl.h
usno.o: $(FTCL_DIR)/include/ftcl.h
usno.o: $(FTCL_DIR)/include/ftclParseArgv.h
usno.o: $(DERVISH_DIR)/include/dervish_msg_c.h
usno.o: $(DERVISH_DIR)/include/region.h
usno.o: $(DERVISH_DIR)/include/shCAlign.h
usno.o: $(DERVISH_DIR)/include/shCSchema.h
usno.o: $(DERVISH_DIR)/include/shCHdr.h
usno.o: $(DERVISH_DIR)/include/shC.h
usno.o: $(DERVISH_DIR)/include/shChain.h
usno.o: $(DERVISH_DIR)/include/shCArray.h
usno.o: $(DERVISH_DIR)/include/shCVecExpr.h
usno.o: $(DERVISH_DIR)/include/shCUtils.h
usno.o: $(DERVISH_DIR)/include/shCErrStack.h
usno.o: $(DERVISH_DIR)/include/shTclErrStack.h
usno.o: $(DERVISH_DIR)/include/shCSchemaCnv.h
usno.o: $(DERVISH_DIR)/include/shTclHandle.h
usno.o: $(DERVISH_DIR)/include/shCList.h
usno.o: $(DERVISH_DIR)/include/shCTbl.h
usno.o: $(LIBFITS_DIR)/src/libfits.h
usno.o: $(DERVISH_DIR)/include/shCFitsIo.h
usno.o: $(DERVISH_DIR)/include/shCSchemaTrans.h
usno.o: $(DERVISH_DIR)/include/shCSchemaSupport.h
usno.o: $(DERVISH_DIR)/include/shCFits.h
usno.o: $(DERVISH_DIR)/include/shCMaskUtils.h
usno.o: $(DERVISH_DIR)/include/shCRegUtils.h
usno.o: $(DERVISH_DIR)/include/shCRegPrint.h
usno.o: $(DERVISH_DIR)/include/shCHash.h
usno.o: $(DERVISH_DIR)/include/shCAssert.h
usno.o: $(DERVISH_DIR)/include/shCEnvscan.h
usno.o: $(DERVISH_DIR)/include/shTclRegSupport.h
usno.o: $(DERVISH_DIR)/include/shCSao.h
usno.o: $(DERVISH_DIR)/include/imtool.h
usno.o: $(DERVISH_DIR)/include/shTclParseArgv.h
usno.o: $(DERVISH_DIR)/include/shTclVerbs.h
usno.o: $(DERVISH_DIR)/include/shTclSao.h
usno.o: $(FTCL_DIR)/include/ftclCmdLine.h
usno.o: $(DERVISH_DIR)/include/shTclUtils.h
usno.o: $(DERVISH_DIR)/include/shTk.h
usno.o: $(DERVISH_DIR)/include/shCGarbage.h
usno.o: $(DERVISH_DIR)/include/shCHg.h
usno.o: $(DERVISH_DIR)/include/shCLink.h
usno.o: $(DERVISH_DIR)/include/shCLut.h
usno.o: $(DERVISH_DIR)/include/shCVecChain.h
usno.o: $(DERVISH_DIR)/include/shCDemo.h
usno.o: $(DERVISH_DIR)/include/shCDiskio.h
usno.o: $(DERVISH_DIR)/include/shCHist.h
usno.o: $(DERVISH_DIR)/include/shCMask.h
usno.o: $(DERVISH_DIR)/include/shCMemory.h
usno.o: $(DERVISH_DIR)/include/shCRegPhysical.h
usno.o: $(DERVISH_DIR)/include/shTclAlign.h
usno.o: $(DERVISH_DIR)/include/shTclArray.h
usno.o: $(DERVISH_DIR)/include/shTclFits.h
usno.o: $(DERVISH_DIR)/include/shTclHdr.h
usno.o: $(DERVISH_DIR)/include/shTclSupport.h
usno.o: $(DERVISH_DIR)/include/shTclTree.h
usno.o: ../include/taCatalogs.h
usno.o: ../include/taCalibObj.h
usno.o: $(ASTROTOOLS_DIR)/include/astrotools.h
usno.o: $(ASTROTOOLS_DIR)/include/atLinearFits.h
usno.o: $(ASTROTOOLS_DIR)/include/atSlalib.h
usno.o: $(ASTROTOOLS_DIR)/include/atTrans.h
usno.o: $(SDSSMATH_DIR)/include/sdssmath.h
usno.o: $(SDSSMATH_DIR)/include/tclMath.h
usno.o: $(SDSSMATH_DIR)/include/slatec.h
usno.o: $(SDSSMATH_DIR)/include/smaFunc.h
usno.o: $(SDSSMATH_DIR)/include/smaFft.h
usno.o: $(FFTW_DIR)/src/fftw.h
usno.o: $(ASTROTOOLS_DIR)/include/atSlalib_c.h
usno.o: $(ASTROTOOLS_DIR)/include/atTclVerbs.h
usno.o: $(ASTROTOOLS_DIR)/include/atSurveyGeometry.h
usno.o: $(ASTROTOOLS_DIR)/include/atConversions.h
usno.o: $(ASTROTOOLS_DIR)/include/atAirmass.h
usno.o: $(ASTROTOOLS_DIR)/include/atGalaxy.h
usno.o: $(ASTROTOOLS_DIR)/include/atObject.h
usno.o: $(ASTROTOOLS_DIR)/include/atGauss.h
usno.o: $(ASTROTOOLS_DIR)/include/atImSim.h
usno.o: $(ASTROTOOLS_DIR)/include/atRegSci.h
usno.o: $(ASTROTOOLS_DIR)/include/atCali.h
usno.o: $(ASTROTOOLS_DIR)/include/atEphemeris.h
usno.o: $(ASTROTOOLS_DIR)/include/atPMatch.h
usno.o: $(ASTROTOOLS_DIR)/include/atCentroid.h
usno.o: $(ASTROTOOLS_DIR)/include/atGaussianWidth.h
usno.o: $(ASTROTOOLS_DIR)/include/atQuasar.h
usno.o: $(ASTROTOOLS_DIR)/include/atAperture.h
usno.o: ../common/arObjectType.h
usno.o: ../common/arPSFStatus.h
