LIBS = gap
ifeq ($(MACHINE),windows)
PROGS = $(LIBS) copy_db 
else
PROGS = $(LIBS) copy_db 
endif
PROGLIBS= $(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX)

SRCROOT=$(SRC)/..
include $(SRCROOT)/global.mk
include ../system.mk

# Local comment: Comment out next line for remote compilation

INCLUDES_E += $(MISC_INC) $(G_INC) $(TK_INC) \
	      $(IOLIB_INC) $(TKUTILS_INC) $(SEQUTILS_INC) $(MUT_INC) \
	      $(F77_INC) $(P3_INC)
CFLAGS += $(SHLIB_CFLAGS)
FFLAGS += $(SHLIB_FFLAGS)


#
# Building the programs
# This should be just a linking phase because all of the object
# files and library files are generated using implicit rules.
# We use the fortran compiler to do linking.
#

GAPDB_LOW=\
	gap-local.o\
	gap-remote.o\
	gap-if.o\
	gap-init.o\
	gap-dbstruct.o\
	gap-create.o\
	gap-error.o\
	stack_dump.o\
	gap-io.o

GAPDB_MID=\
        IO1.o \
        io-reg.o \
        actf.o

GAPDB_UTILS=\
	io_handle.o \
	io_utils.o

# GAPDB_EXT_OBJS is basically the low and mid level files plus the
# text-io-reg.o object. This is simply stub routines to enable safe linking
# and isn't needed by gap4 itself.

GAPDB_EXT_OBJS=\
	$(GAPDB_LOW) \
	$(GAPDB_MID) \
	$(GAPDB_UTILS) \
	text-io-reg.o

GAPDB_EXT_INC=$(G_INC) -I$(GAP4SRC)

GAPDB_EXT_DEPS=\
	$(G_DEP) \
	$(TEXTUTILS_DEP) \
	$(MISC_DEP) \
	$(TCL_DEP)

GAPDB_EXT_LIBS=\
	$(G_LIB) \
	$(TEXTUTILS_LIB) \
	$(MISC_LIB) \
	$(TCL_LIB) \
	$(IOLIB_LIB)

GAPDB=\
	$(GAPDB_LOW)\
	$(GAPDB_MID)\
	IO2.o\
	seqInfo.o\
	parse_ft.o\
	IO3.o \
	io_utils.o \
	io_handle.o \
	gap-tcl.o \
	tk-io-reg.o

CONSEN=\
	consen.o\
	gap_hash.o\
	qual.o\
	qualIO.o

TCLBITS=\
	gap_cli_arg.o \
	gap_globals.o \
	newgap_cmds.o \
	init.o

EDITOR = \
	tkEditor.o\
	tkEdNames.o\
	tkEdUtils.o\
	edInterface.o\
	edUtils2.o \
	tagU1.o\
	undo.o\
	edExtend.o\
	edCommands.o\
	edMutations.o\
	tagEditor.o\
	searchUtils.o\
	tman_interface.o\
	tman_display.o\
	tman_cons.o\
	tman_diff.o\
	contigEditor.o\
	join.o\
	oligo.o

GAPFUNCS = \
	bubbl3.o\
	tagdb.o\
	notedb.o\
	active_tags.o\
	dbcheck.o\
	clones.o\
	extract.o\
	preass.o \
	list.o \
	reactions.o \
	probe.o \
	template.o \
	template_display.o \
	ruler_display.o \
	gap_canvas_box.o \
	hash.o \
	gap_array.o \
	show_relationships.o \
	fij.o \
	hash_lib.o \
	do_fij.o \
	auto_assemble.o \
	dis_readings.o \
	find_repeats.o \
	break_contig.o \
	quality_plot.o \
	readpair.o \
	contig_selector.o \
	complement.o \
	cs-object.o\
	list_proc.o\
	dstrand.o\
	oligo_sel.o\
	primlib.o\
	alter_rel.o\
	restriction_enzymes.o \
	stop_codon.o \
	assemble_direct.o\
	check_assembly.o\
	tagU2.o\
	mess.o\
	find_oligo.o\
	copy_db.o \
	contig_order.o\
	clip.o\
	notes.o\
	consistency_display.o\
	consistency_canvas_box.o\
	confidence_graph.o\
	reading_coverage.o\
	readpair_coverage.o\
	strand_coverage.o\
	find_fragments.o\
	vseqs.o\
	$(GAP4_LEGACY)\
	f2c.o \
	shuffle_pads.o \
	auto_break.o

GAPOBJS=\
	$(COMMONOBJS)\
	$(GAPDB)\
	$(TCLBITS)\
	$(CONSEN)\
	$(GAPFUNCS)\
	$(EDITOR)

GAP4_LIBS=\
	$(IOLIB_LIB) \
	$(SEQUTILS_LIB) \
	$(TKUTILS_LIB) \
	$(TK_LIB) \
	$(BIOLIMS_LIB) \
	$(BIOGAP_LIB) \
	$(G_LIB) \
	$(MUT_LIB) \
	$(MISC_LIB) \
	$(P3_LIB)

GAP4SH_LIBS=\
	$(IOLIB_LIB) \
	$(G_LIB) \
	$(SEQUTILS_LIB) \
	$(TKUTILS_LIB) \
	$(TK_LIB) \
	$(MISC_LIB) \
	$(MUT_LIB) \
	$(P3_LIB)

$(LIBS) : $(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX)
	-@

$(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX): $(GAPOBJS) $(DEF_FILE) $(L)/.dir
	$(SHLIB_LD) $(SHLIB_LDFLAGS) $(SHLIB_OUTFLAG)$@ $(SHLIB_SONAME) $(LINK_PATHFLAG)$(L) $(GAPOBJS) $(GAP4_LIBS) $(CXX_DEP) $(SHLIB_DEP) $(F77_DEP) $(IOLIB_LIB)

$(L)/$(SHLIB_PREFIX)$(LIBS).def: $(GAPOBJS)
	$(MKDEFL) $@ $(GAPOBJS)

COPYDBOBJS=\
        $(GAPDB_LOW) \
        $(GAPDB_MID) \
        copy_db.o \
        copy_db_main.o \
        text-io-reg.o\
	io_utils.o \
	io_handle.o

CPLIB=\
	$(G_LIB) \
	$(TEXTUTILS_LIB) \
	$(MISC_LIB) \
	$(TCL_LIB) \
	$(IOLIB_LIB)

copy_db:   $(COPYDBOBJS)
	$(CLD) $(LDEXEFLAG)$@$(EXE_SUFFIX) $(COPYDBOBJS) $(CPLIB) $(LIBSC)

THRASHOBJS=\
        $(GAPDB_LOW) \
        $(GAPDB_MID) \
        gap-thrash3.o \
        text-io-reg.o

THRASHBOBJS=\
        $(GAPDB_LOW) \
        $(GAPDB_MID) \
        gap-thrash2bug.o \
        text-io-reg.o

TLIB=\
	$(G_LIB) \
	$(TEXTUTILS_LIB) \
	./libmisc.a

thrash:   $(THRASHOBJS)
	$(CLD) -o $@ $(THRASHOBJS) $(TLIB) $(LIBSC) -ldmalloc
thrashb:   $(THRASHBOBJS)
	$(CLD) -o $@ $(THRASHBOBJS) $(TLIB) $(LIBSC) -ldmalloc

DEPEND_OBJ = $(GAPOBJS) $(COPYDBOBJS)

install:
	cp copy_db $(INSTALLBIN)
	$(INSTALL) gap4 $(INSTALLBIN)
	-mkdir $(INSTALLTCL)/gap
	cp $(S)/*.tcl $(S)/tclIndex $(INSTALLTCL)/gap
	cp $(PROGLIBS) $(INSTALLLIB)
	cp $(S)/gaprc $(S)/gaprc_menu_full $(S)/gaprc_menu_mito $(INSTALLETC)
	cp $(S)/GTAGDB $(S)/NOTEDB $(INSTALLETC)
	cp $(S)/cap2rc $(S)/cap3rc $(S)/fak2rc $(S)/phraprc $(INSTALLETC)
	cp $(S)/*.bitmap $(S)/*.gif $(INSTALLETC)

distsrc: distsrc_dirs
	cp $(S)/*.[chf] $(S)/*.tcl $(S)/tclIndex $(S)/Makefile $(S)/gap4.in \
	   $(S)/gap4.bat $(S)/GTAGDB $(S)/NOTEDB $(S)/*.bitmap $(S)/*.gif \
	   $(S)/gaprc $(S)/gaprc_menu_full $(S)/gaprc_menu_mito \
	   $(S)/cap2rc $(S)/cap3rc $(S)/fak2rc $(S)/phraprc $(DIRNAME)

# DO NOT DELETE THIS LINE -- make depend depends on it.

IO1.o: $(PWD)/staden_config.h
IO1.o: $(SRCROOT)/Misc/FtoC.h
IO1.o: $(SRCROOT)/Misc/array.h
IO1.o: $(SRCROOT)/Misc/bitmap.h
IO1.o: $(SRCROOT)/Misc/dstring.h
IO1.o: $(SRCROOT)/Misc/misc.h
IO1.o: $(SRCROOT)/Misc/os.h
IO1.o: $(SRCROOT)/Misc/xalloc.h
IO1.o: $(SRCROOT)/Misc/xerror.h
IO1.o: $(SRCROOT)/g/freetree.h
IO1.o: $(SRCROOT)/g/g-defs.h
IO1.o: $(SRCROOT)/g/g-error.h
IO1.o: $(SRCROOT)/g/g-filedefs.h
IO1.o: $(SRCROOT)/g/g-os.h
IO1.o: $(SRCROOT)/g/g-struct.h
IO1.o: $(SRCROOT)/gap4/IO1.h
IO1.o: $(SRCROOT)/gap4/actf.h
IO1.o: $(SRCROOT)/gap4/edStructs.h
IO1.o: $(SRCROOT)/gap4/edUtils.h
IO1.o: $(SRCROOT)/gap4/fort.h
IO1.o: $(SRCROOT)/gap4/fortran.h
IO1.o: $(SRCROOT)/gap4/gap-create.h
IO1.o: $(SRCROOT)/gap4/gap-dbstruct.h
IO1.o: $(SRCROOT)/gap4/gap-error.h
IO1.o: $(SRCROOT)/gap4/gap-if.h
IO1.o: $(SRCROOT)/gap4/gap-init.h
IO1.o: $(SRCROOT)/gap4/gap-io.h
IO1.o: $(SRCROOT)/gap4/io-reg.h
IO1.o: $(SRCROOT)/gap4/io_handle.h
IO1.o: $(SRCROOT)/gap4/io_utils.h
IO1.o: $(SRCROOT)/gap4/list.h
IO1.o: $(SRCROOT)/gap4/notes.h
IO1.o: $(SRCROOT)/gap4/primlib.h
IO1.o: $(SRCROOT)/gap4/qual.h
IO1.o: $(SRCROOT)/gap4/tagDefs.h
IO1.o: $(SRCROOT)/gap4/tagUtils.h
IO1.o: $(SRCROOT)/gap4/template.h
IO1.o: $(SRCROOT)/gap4/tkEdNames.h
IO1.o: $(SRCROOT)/gap4/tkEditor.h
IO1.o: $(SRCROOT)/gap4/tman_display.h
IO1.o: $(SRCROOT)/gap4/undo.h
IO1.o: $(SRCROOT)/primer3/src/dpal.h
IO1.o: $(SRCROOT)/primer3/src/primer3.h
IO1.o: $(SRCROOT)/tk_utils/cli_arg.h
IO1.o: $(SRCROOT)/tk_utils/intrinsic_type.h
IO1.o: $(SRCROOT)/tk_utils/postscript.h
IO1.o: $(SRCROOT)/tk_utils/sheet.h
IO1.o: $(SRCROOT)/tk_utils/text_output.h
IO1.o: $(SRCROOT)/tk_utils/tkSheet.h
IO1.o: $(SRCROOT)/tk_utils/tkSheet_common.h
IO1.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
IO1.o: $(SRCROOT)/tk_utils/tkTrace.h
IO2.o: $(PWD)/staden_config.h
IO2.o: $(SRCROOT)/Misc/FtoC.h
IO2.o: $(SRCROOT)/Misc/array.h
IO2.o: $(SRCROOT)/Misc/bitmap.h
IO2.o: $(SRCROOT)/Misc/dstring.h
IO2.o: $(SRCROOT)/Misc/misc.h
IO2.o: $(SRCROOT)/Misc/os.h
IO2.o: $(SRCROOT)/Misc/xalloc.h
IO2.o: $(SRCROOT)/Misc/xerror.h
IO2.o: $(SRCROOT)/g/freetree.h
IO2.o: $(SRCROOT)/g/g-defs.h
IO2.o: $(SRCROOT)/g/g-error.h
IO2.o: $(SRCROOT)/g/g-filedefs.h
IO2.o: $(SRCROOT)/g/g-os.h
IO2.o: $(SRCROOT)/g/g-struct.h
IO2.o: $(SRCROOT)/gap4/IO1.h
IO2.o: $(SRCROOT)/gap4/IO2.h
IO2.o: $(SRCROOT)/gap4/clones.h
IO2.o: $(SRCROOT)/gap4/contig_selector.h
IO2.o: $(SRCROOT)/gap4/cs-object.h
IO2.o: $(SRCROOT)/gap4/edStructs.h
IO2.o: $(SRCROOT)/gap4/edUtils.h
IO2.o: $(SRCROOT)/gap4/fort.h
IO2.o: $(SRCROOT)/gap4/fortran.h
IO2.o: $(SRCROOT)/gap4/gap-create.h
IO2.o: $(SRCROOT)/gap4/gap-dbstruct.h
IO2.o: $(SRCROOT)/gap4/gap-if.h
IO2.o: $(SRCROOT)/gap4/io-reg.h
IO2.o: $(SRCROOT)/gap4/io_handle.h
IO2.o: $(SRCROOT)/gap4/io_utils.h
IO2.o: $(SRCROOT)/gap4/list.h
IO2.o: $(SRCROOT)/gap4/notes.h
IO2.o: $(SRCROOT)/gap4/primlib.h
IO2.o: $(SRCROOT)/gap4/qual.h
IO2.o: $(SRCROOT)/gap4/seqInfo.h
IO2.o: $(SRCROOT)/gap4/tagDefs.h
IO2.o: $(SRCROOT)/gap4/tagUtils.h
IO2.o: $(SRCROOT)/gap4/template.h
IO2.o: $(SRCROOT)/gap4/tkEdNames.h
IO2.o: $(SRCROOT)/gap4/tkEditor.h
IO2.o: $(SRCROOT)/gap4/tman_display.h
IO2.o: $(SRCROOT)/gap4/undo.h
IO2.o: $(SRCROOT)/primer3/src/dpal.h
IO2.o: $(SRCROOT)/primer3/src/primer3.h
IO2.o: $(SRCROOT)/seq_utils/dna_utils.h
IO2.o: $(SRCROOT)/tk_utils/canvas_box.h
IO2.o: $(SRCROOT)/tk_utils/cli_arg.h
IO2.o: $(SRCROOT)/tk_utils/intrinsic_type.h
IO2.o: $(SRCROOT)/tk_utils/postscript.h
IO2.o: $(SRCROOT)/tk_utils/sheet.h
IO2.o: $(SRCROOT)/tk_utils/text_output.h
IO2.o: $(SRCROOT)/tk_utils/tkSheet.h
IO2.o: $(SRCROOT)/tk_utils/tkSheet_common.h
IO2.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
IO2.o: $(SRCROOT)/tk_utils/tkTrace.h
IO3.o: $(PWD)/staden_config.h
IO3.o: $(SRCROOT)/Misc/FtoC.h
IO3.o: $(SRCROOT)/Misc/array.h
IO3.o: $(SRCROOT)/Misc/bitmap.h
IO3.o: $(SRCROOT)/Misc/dstring.h
IO3.o: $(SRCROOT)/Misc/misc.h
IO3.o: $(SRCROOT)/Misc/os.h
IO3.o: $(SRCROOT)/Misc/xalloc.h
IO3.o: $(SRCROOT)/Misc/xerror.h
IO3.o: $(SRCROOT)/g/freetree.h
IO3.o: $(SRCROOT)/g/g-defs.h
IO3.o: $(SRCROOT)/g/g-error.h
IO3.o: $(SRCROOT)/g/g-filedefs.h
IO3.o: $(SRCROOT)/g/g-os.h
IO3.o: $(SRCROOT)/g/g-struct.h
IO3.o: $(SRCROOT)/gap4/IO1.h
IO3.o: $(SRCROOT)/gap4/edStructs.h
IO3.o: $(SRCROOT)/gap4/edUtils.h
IO3.o: $(SRCROOT)/gap4/fort.h
IO3.o: $(SRCROOT)/gap4/fortran.h
IO3.o: $(SRCROOT)/gap4/gap-dbstruct.h
IO3.o: $(SRCROOT)/gap4/gap-error.h
IO3.o: $(SRCROOT)/gap4/gap-if.h
IO3.o: $(SRCROOT)/gap4/io-reg.h
IO3.o: $(SRCROOT)/gap4/io_handle.h
IO3.o: $(SRCROOT)/gap4/io_utils.h
IO3.o: $(SRCROOT)/gap4/list.h
IO3.o: $(SRCROOT)/gap4/primlib.h
IO3.o: $(SRCROOT)/gap4/qual.h
IO3.o: $(SRCROOT)/gap4/tagDefs.h
IO3.o: $(SRCROOT)/gap4/tagUtils.h
IO3.o: $(SRCROOT)/gap4/template.h
IO3.o: $(SRCROOT)/gap4/tkEdNames.h
IO3.o: $(SRCROOT)/gap4/tkEditor.h
IO3.o: $(SRCROOT)/gap4/tman_display.h
IO3.o: $(SRCROOT)/gap4/undo.h
IO3.o: $(SRCROOT)/primer3/src/dpal.h
IO3.o: $(SRCROOT)/primer3/src/primer3.h
IO3.o: $(SRCROOT)/tk_utils/cli_arg.h
IO3.o: $(SRCROOT)/tk_utils/intrinsic_type.h
IO3.o: $(SRCROOT)/tk_utils/postscript.h
IO3.o: $(SRCROOT)/tk_utils/sheet.h
IO3.o: $(SRCROOT)/tk_utils/tkSheet.h
IO3.o: $(SRCROOT)/tk_utils/tkSheet_common.h
IO3.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
IO3.o: $(SRCROOT)/tk_utils/tkTrace.h
actf.o: $(PWD)/staden_config.h
actf.o: $(SRCROOT)/Misc/array.h
actf.o: $(SRCROOT)/Misc/bitmap.h
actf.o: $(SRCROOT)/Misc/misc.h
actf.o: $(SRCROOT)/Misc/os.h
actf.o: $(SRCROOT)/Misc/xalloc.h
actf.o: $(SRCROOT)/Misc/xerror.h
actf.o: $(SRCROOT)/g/freetree.h
actf.o: $(SRCROOT)/g/g-defs.h
actf.o: $(SRCROOT)/g/g-error.h
actf.o: $(SRCROOT)/g/g-filedefs.h
actf.o: $(SRCROOT)/g/g-os.h
actf.o: $(SRCROOT)/g/g-struct.h
actf.o: $(SRCROOT)/gap4/IO1.h
actf.o: $(SRCROOT)/gap4/actf.h
actf.o: $(SRCROOT)/gap4/fort.h
actf.o: $(SRCROOT)/gap4/gap-dbstruct.h
actf.o: $(SRCROOT)/gap4/gap-if.h
actf.o: $(SRCROOT)/gap4/io_handle.h
actf.o: $(SRCROOT)/gap4/io_utils.h
actf.o: $(SRCROOT)/tk_utils/text_output.h
active_tags.o: $(PWD)/staden_config.h
active_tags.o: $(SRCROOT)/Misc/array.h
active_tags.o: $(SRCROOT)/Misc/bitmap.h
active_tags.o: $(SRCROOT)/Misc/dstring.h
active_tags.o: $(SRCROOT)/Misc/misc.h
active_tags.o: $(SRCROOT)/Misc/os.h
active_tags.o: $(SRCROOT)/Misc/xalloc.h
active_tags.o: $(SRCROOT)/Misc/xerror.h
active_tags.o: $(SRCROOT)/g/freetree.h
active_tags.o: $(SRCROOT)/g/g-defs.h
active_tags.o: $(SRCROOT)/g/g-error.h
active_tags.o: $(SRCROOT)/g/g-filedefs.h
active_tags.o: $(SRCROOT)/g/g-os.h
active_tags.o: $(SRCROOT)/g/g-struct.h
active_tags.o: $(SRCROOT)/gap4/IO1.h
active_tags.o: $(SRCROOT)/gap4/contigEditor.h
active_tags.o: $(SRCROOT)/gap4/edStructs.h
active_tags.o: $(SRCROOT)/gap4/edUtils.h
active_tags.o: $(SRCROOT)/gap4/fort.h
active_tags.o: $(SRCROOT)/gap4/fortran.h
active_tags.o: $(SRCROOT)/gap4/gap-dbstruct.h
active_tags.o: $(SRCROOT)/gap4/gap-if.h
active_tags.o: $(SRCROOT)/gap4/io-reg.h
active_tags.o: $(SRCROOT)/gap4/io_handle.h
active_tags.o: $(SRCROOT)/gap4/io_utils.h
active_tags.o: $(SRCROOT)/gap4/list.h
active_tags.o: $(SRCROOT)/gap4/list_proc.h
active_tags.o: $(SRCROOT)/gap4/primlib.h
active_tags.o: $(SRCROOT)/gap4/qual.h
active_tags.o: $(SRCROOT)/gap4/tagDefs.h
active_tags.o: $(SRCROOT)/gap4/tagUtils.h
active_tags.o: $(SRCROOT)/gap4/tagdb.h
active_tags.o: $(SRCROOT)/gap4/template.h
active_tags.o: $(SRCROOT)/gap4/tkEdNames.h
active_tags.o: $(SRCROOT)/gap4/tkEditor.h
active_tags.o: $(SRCROOT)/gap4/tman_display.h
active_tags.o: $(SRCROOT)/gap4/undo.h
active_tags.o: $(SRCROOT)/primer3/src/dpal.h
active_tags.o: $(SRCROOT)/primer3/src/primer3.h
active_tags.o: $(SRCROOT)/tk_utils/cli_arg.h
active_tags.o: $(SRCROOT)/tk_utils/intrinsic_type.h
active_tags.o: $(SRCROOT)/tk_utils/postscript.h
active_tags.o: $(SRCROOT)/tk_utils/sheet.h
active_tags.o: $(SRCROOT)/tk_utils/tkSheet.h
active_tags.o: $(SRCROOT)/tk_utils/tkSheet_common.h
active_tags.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
active_tags.o: $(SRCROOT)/tk_utils/tkTrace.h
alter_rel.o: $(PWD)/staden_config.h
alter_rel.o: $(SRCROOT)/Misc/array.h
alter_rel.o: $(SRCROOT)/Misc/bitmap.h
alter_rel.o: $(SRCROOT)/Misc/dstring.h
alter_rel.o: $(SRCROOT)/Misc/misc.h
alter_rel.o: $(SRCROOT)/Misc/os.h
alter_rel.o: $(SRCROOT)/Misc/xalloc.h
alter_rel.o: $(SRCROOT)/Misc/xerror.h
alter_rel.o: $(SRCROOT)/g/freetree.h
alter_rel.o: $(SRCROOT)/g/g-defs.h
alter_rel.o: $(SRCROOT)/g/g-error.h
alter_rel.o: $(SRCROOT)/g/g-filedefs.h
alter_rel.o: $(SRCROOT)/g/g-os.h
alter_rel.o: $(SRCROOT)/g/g-struct.h
alter_rel.o: $(SRCROOT)/gap4/IO1.h
alter_rel.o: $(SRCROOT)/gap4/alter_rel.h
alter_rel.o: $(SRCROOT)/gap4/dis_readings.h
alter_rel.o: $(SRCROOT)/gap4/edStructs.h
alter_rel.o: $(SRCROOT)/gap4/edUtils.h
alter_rel.o: $(SRCROOT)/gap4/fort.h
alter_rel.o: $(SRCROOT)/gap4/fortran.h
alter_rel.o: $(SRCROOT)/gap4/gap-dbstruct.h
alter_rel.o: $(SRCROOT)/gap4/gap-error.h
alter_rel.o: $(SRCROOT)/gap4/gap-if.h
alter_rel.o: $(SRCROOT)/gap4/io-reg.h
alter_rel.o: $(SRCROOT)/gap4/io_handle.h
alter_rel.o: $(SRCROOT)/gap4/io_utils.h
alter_rel.o: $(SRCROOT)/gap4/list.h
alter_rel.o: $(SRCROOT)/gap4/primlib.h
alter_rel.o: $(SRCROOT)/gap4/qual.h
alter_rel.o: $(SRCROOT)/gap4/tagDefs.h
alter_rel.o: $(SRCROOT)/gap4/tagUtils.h
alter_rel.o: $(SRCROOT)/gap4/template.h
alter_rel.o: $(SRCROOT)/gap4/tkEdNames.h
alter_rel.o: $(SRCROOT)/gap4/tkEditor.h
alter_rel.o: $(SRCROOT)/gap4/tman_display.h
alter_rel.o: $(SRCROOT)/gap4/undo.h
alter_rel.o: $(SRCROOT)/primer3/src/dpal.h
alter_rel.o: $(SRCROOT)/primer3/src/primer3.h
alter_rel.o: $(SRCROOT)/tk_utils/cli_arg.h
alter_rel.o: $(SRCROOT)/tk_utils/intrinsic_type.h
alter_rel.o: $(SRCROOT)/tk_utils/postscript.h
alter_rel.o: $(SRCROOT)/tk_utils/sheet.h
alter_rel.o: $(SRCROOT)/tk_utils/tkSheet.h
alter_rel.o: $(SRCROOT)/tk_utils/tkSheet_common.h
alter_rel.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
alter_rel.o: $(SRCROOT)/tk_utils/tkTrace.h
assemble_direct.o: $(PWD)/staden_config.h
assemble_direct.o: $(SRCROOT)/Misc/array.h
assemble_direct.o: $(SRCROOT)/Misc/bitmap.h
assemble_direct.o: $(SRCROOT)/Misc/dstring.h
assemble_direct.o: $(SRCROOT)/Misc/misc.h
assemble_direct.o: $(SRCROOT)/Misc/os.h
assemble_direct.o: $(SRCROOT)/Misc/xalloc.h
assemble_direct.o: $(SRCROOT)/Misc/xerror.h
assemble_direct.o: $(SRCROOT)/g/freetree.h
assemble_direct.o: $(SRCROOT)/g/g-defs.h
assemble_direct.o: $(SRCROOT)/g/g-error.h
assemble_direct.o: $(SRCROOT)/g/g-filedefs.h
assemble_direct.o: $(SRCROOT)/g/g-os.h
assemble_direct.o: $(SRCROOT)/g/g-struct.h
assemble_direct.o: $(SRCROOT)/gap4/IO1.h
assemble_direct.o: $(SRCROOT)/gap4/IO2.h
assemble_direct.o: $(SRCROOT)/gap4/assemble_direct.h
assemble_direct.o: $(SRCROOT)/gap4/clones.h
assemble_direct.o: $(SRCROOT)/gap4/consen.h
assemble_direct.o: $(SRCROOT)/gap4/dis_readings.h
assemble_direct.o: $(SRCROOT)/gap4/edStructs.h
assemble_direct.o: $(SRCROOT)/gap4/edUtils.h
assemble_direct.o: $(SRCROOT)/gap4/fort.h
assemble_direct.o: $(SRCROOT)/gap4/fortran.h
assemble_direct.o: $(SRCROOT)/gap4/gap-dbstruct.h
assemble_direct.o: $(SRCROOT)/gap4/gap-if.h
assemble_direct.o: $(SRCROOT)/gap4/gap_globals.h
assemble_direct.o: $(SRCROOT)/gap4/io-reg.h
assemble_direct.o: $(SRCROOT)/gap4/io_handle.h
assemble_direct.o: $(SRCROOT)/gap4/io_utils.h
assemble_direct.o: $(SRCROOT)/gap4/list.h
assemble_direct.o: $(SRCROOT)/gap4/list_proc.h
assemble_direct.o: $(SRCROOT)/gap4/notes.h
assemble_direct.o: $(SRCROOT)/gap4/primlib.h
assemble_direct.o: $(SRCROOT)/gap4/qual.h
assemble_direct.o: $(SRCROOT)/gap4/seqInfo.h
assemble_direct.o: $(SRCROOT)/gap4/tagDefs.h
assemble_direct.o: $(SRCROOT)/gap4/tagUtils.h
assemble_direct.o: $(SRCROOT)/gap4/template.h
assemble_direct.o: $(SRCROOT)/gap4/tkEdNames.h
assemble_direct.o: $(SRCROOT)/gap4/tkEditor.h
assemble_direct.o: $(SRCROOT)/gap4/tman_display.h
assemble_direct.o: $(SRCROOT)/gap4/undo.h
assemble_direct.o: $(SRCROOT)/primer3/src/dpal.h
assemble_direct.o: $(SRCROOT)/primer3/src/primer3.h
assemble_direct.o: $(SRCROOT)/seq_utils/align.h
assemble_direct.o: $(SRCROOT)/seq_utils/align_lib_old.h
assemble_direct.o: $(SRCROOT)/seq_utils/dna_utils.h
assemble_direct.o: $(SRCROOT)/tk_utils/cli_arg.h
assemble_direct.o: $(SRCROOT)/tk_utils/intrinsic_type.h
assemble_direct.o: $(SRCROOT)/tk_utils/postscript.h
assemble_direct.o: $(SRCROOT)/tk_utils/sheet.h
assemble_direct.o: $(SRCROOT)/tk_utils/tcl_utils.h
assemble_direct.o: $(SRCROOT)/tk_utils/text_output.h
assemble_direct.o: $(SRCROOT)/tk_utils/tkSheet.h
assemble_direct.o: $(SRCROOT)/tk_utils/tkSheet_common.h
assemble_direct.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
assemble_direct.o: $(SRCROOT)/tk_utils/tkTrace.h
auto_assemble.o: $(PWD)/staden_config.h
auto_assemble.o: $(SRCROOT)/Misc/array.h
auto_assemble.o: $(SRCROOT)/Misc/bitmap.h
auto_assemble.o: $(SRCROOT)/Misc/misc.h
auto_assemble.o: $(SRCROOT)/Misc/os.h
auto_assemble.o: $(SRCROOT)/Misc/xalloc.h
auto_assemble.o: $(SRCROOT)/Misc/xerror.h
auto_assemble.o: $(SRCROOT)/g/freetree.h
auto_assemble.o: $(SRCROOT)/g/g-defs.h
auto_assemble.o: $(SRCROOT)/g/g-error.h
auto_assemble.o: $(SRCROOT)/g/g-filedefs.h
auto_assemble.o: $(SRCROOT)/g/g-os.h
auto_assemble.o: $(SRCROOT)/g/g-struct.h
auto_assemble.o: $(SRCROOT)/gap4/IO1.h
auto_assemble.o: $(SRCROOT)/gap4/complement.h
auto_assemble.o: $(SRCROOT)/gap4/fort.h
auto_assemble.o: $(SRCROOT)/gap4/gap-dbstruct.h
auto_assemble.o: $(SRCROOT)/gap4/gap-if.h
auto_assemble.o: $(SRCROOT)/gap4/gap_globals.h
auto_assemble.o: $(SRCROOT)/gap4/io_handle.h
auto_assemble.o: $(SRCROOT)/gap4/io_utils.h
auto_assemble.o: $(SRCROOT)/gap4/list_proc.h
auto_assemble.o: $(SRCROOT)/tk_utils/tcl_utils.h
auto_break.o: $(PWD)/staden_config.h
auto_break.o: $(SRCROOT)/Misc/array.h
auto_break.o: $(SRCROOT)/Misc/bitmap.h
auto_break.o: $(SRCROOT)/Misc/dstring.h
auto_break.o: $(SRCROOT)/Misc/misc.h
auto_break.o: $(SRCROOT)/Misc/os.h
auto_break.o: $(SRCROOT)/Misc/xalloc.h
auto_break.o: $(SRCROOT)/Misc/xerror.h
auto_break.o: $(SRCROOT)/g/freetree.h
auto_break.o: $(SRCROOT)/g/g-defs.h
auto_break.o: $(SRCROOT)/g/g-error.h
auto_break.o: $(SRCROOT)/g/g-filedefs.h
auto_break.o: $(SRCROOT)/g/g-os.h
auto_break.o: $(SRCROOT)/g/g-struct.h
auto_break.o: $(SRCROOT)/gap4/IO1.h
auto_break.o: $(SRCROOT)/gap4/auto_break.h
auto_break.o: $(SRCROOT)/gap4/gap-dbstruct.h
auto_break.o: $(SRCROOT)/gap4/gap-if.h
auto_break.o: $(SRCROOT)/gap4/gap_globals.h
auto_break.o: $(SRCROOT)/gap4/io_handle.h
auto_break.o: $(SRCROOT)/gap4/io_utils.h
auto_break.o: $(SRCROOT)/gap4/list.h
auto_break.o: $(SRCROOT)/gap4/qual.h
auto_break.o: $(SRCROOT)/gap4/qualIO.h
auto_break.o: $(SRCROOT)/gap4/template.h
auto_break.o: $(SRCROOT)/seq_utils/filter_words.h
auto_break.o: $(SRCROOT)/tk_utils/tcl_utils.h
auto_break.o: $(SRCROOT)/tk_utils/text_output.h
break_contig.o: $(PWD)/staden_config.h
break_contig.o: $(SRCROOT)/Misc/array.h
break_contig.o: $(SRCROOT)/Misc/bitmap.h
break_contig.o: $(SRCROOT)/Misc/misc.h
break_contig.o: $(SRCROOT)/Misc/os.h
break_contig.o: $(SRCROOT)/Misc/xalloc.h
break_contig.o: $(SRCROOT)/Misc/xerror.h
break_contig.o: $(SRCROOT)/g/freetree.h
break_contig.o: $(SRCROOT)/g/g-defs.h
break_contig.o: $(SRCROOT)/g/g-error.h
break_contig.o: $(SRCROOT)/g/g-filedefs.h
break_contig.o: $(SRCROOT)/g/g-os.h
break_contig.o: $(SRCROOT)/g/g-struct.h
break_contig.o: $(SRCROOT)/gap4/IO1.h
break_contig.o: $(SRCROOT)/gap4/dis_readings.h
break_contig.o: $(SRCROOT)/gap4/fort.h
break_contig.o: $(SRCROOT)/gap4/gap-dbstruct.h
break_contig.o: $(SRCROOT)/gap4/gap-if.h
break_contig.o: $(SRCROOT)/gap4/io-reg.h
break_contig.o: $(SRCROOT)/gap4/io_handle.h
break_contig.o: $(SRCROOT)/gap4/io_utils.h
bubbl3.o: $(PWD)/staden_config.h
bubbl3.o: $(SRCROOT)/Misc/os.h
check_assembly.o: $(PWD)/staden_config.h
check_assembly.o: $(SRCROOT)/Misc/array.h
check_assembly.o: $(SRCROOT)/Misc/bitmap.h
check_assembly.o: $(SRCROOT)/Misc/dstring.h
check_assembly.o: $(SRCROOT)/Misc/misc.h
check_assembly.o: $(SRCROOT)/Misc/os.h
check_assembly.o: $(SRCROOT)/Misc/xalloc.h
check_assembly.o: $(SRCROOT)/Misc/xerror.h
check_assembly.o: $(SRCROOT)/g/freetree.h
check_assembly.o: $(SRCROOT)/g/g-defs.h
check_assembly.o: $(SRCROOT)/g/g-error.h
check_assembly.o: $(SRCROOT)/g/g-filedefs.h
check_assembly.o: $(SRCROOT)/g/g-os.h
check_assembly.o: $(SRCROOT)/g/g-struct.h
check_assembly.o: $(SRCROOT)/gap4/IO1.h
check_assembly.o: $(SRCROOT)/gap4/consen.h
check_assembly.o: $(SRCROOT)/gap4/contigEditor.h
check_assembly.o: $(SRCROOT)/gap4/contig_selector.h
check_assembly.o: $(SRCROOT)/gap4/cs-object.h
check_assembly.o: $(SRCROOT)/gap4/edStructs.h
check_assembly.o: $(SRCROOT)/gap4/edUtils.h
check_assembly.o: $(SRCROOT)/gap4/fort.h
check_assembly.o: $(SRCROOT)/gap4/fortran.h
check_assembly.o: $(SRCROOT)/gap4/gap-dbstruct.h
check_assembly.o: $(SRCROOT)/gap4/gap-if.h
check_assembly.o: $(SRCROOT)/gap4/gap_globals.h
check_assembly.o: $(SRCROOT)/gap4/io-reg.h
check_assembly.o: $(SRCROOT)/gap4/io_handle.h
check_assembly.o: $(SRCROOT)/gap4/io_utils.h
check_assembly.o: $(SRCROOT)/gap4/list.h
check_assembly.o: $(SRCROOT)/gap4/primlib.h
check_assembly.o: $(SRCROOT)/gap4/qual.h
check_assembly.o: $(SRCROOT)/gap4/tagDefs.h
check_assembly.o: $(SRCROOT)/gap4/tagUtils.h
check_assembly.o: $(SRCROOT)/gap4/template.h
check_assembly.o: $(SRCROOT)/gap4/tkEdNames.h
check_assembly.o: $(SRCROOT)/gap4/tkEditor.h
check_assembly.o: $(SRCROOT)/gap4/tman_display.h
check_assembly.o: $(SRCROOT)/gap4/undo.h
check_assembly.o: $(SRCROOT)/primer3/src/dpal.h
check_assembly.o: $(SRCROOT)/primer3/src/primer3.h
check_assembly.o: $(SRCROOT)/seq_utils/align.h
check_assembly.o: $(SRCROOT)/seq_utils/align_lib_old.h
check_assembly.o: $(SRCROOT)/seq_utils/dna_utils.h
check_assembly.o: $(SRCROOT)/tk_utils/canvas_box.h
check_assembly.o: $(SRCROOT)/tk_utils/cli_arg.h
check_assembly.o: $(SRCROOT)/tk_utils/intrinsic_type.h
check_assembly.o: $(SRCROOT)/tk_utils/postscript.h
check_assembly.o: $(SRCROOT)/tk_utils/sheet.h
check_assembly.o: $(SRCROOT)/tk_utils/tclXkeylist.h
check_assembly.o: $(SRCROOT)/tk_utils/tcl_utils.h
check_assembly.o: $(SRCROOT)/tk_utils/text_output.h
check_assembly.o: $(SRCROOT)/tk_utils/tkSheet.h
check_assembly.o: $(SRCROOT)/tk_utils/tkSheet_common.h
check_assembly.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
check_assembly.o: $(SRCROOT)/tk_utils/tkTrace.h
clip.o: $(PWD)/staden_config.h
clip.o: $(SRCROOT)/Misc/array.h
clip.o: $(SRCROOT)/Misc/bitmap.h
clip.o: $(SRCROOT)/Misc/dstring.h
clip.o: $(SRCROOT)/Misc/misc.h
clip.o: $(SRCROOT)/Misc/os.h
clip.o: $(SRCROOT)/Misc/xalloc.h
clip.o: $(SRCROOT)/Misc/xerror.h
clip.o: $(SRCROOT)/g/freetree.h
clip.o: $(SRCROOT)/g/g-defs.h
clip.o: $(SRCROOT)/g/g-error.h
clip.o: $(SRCROOT)/g/g-filedefs.h
clip.o: $(SRCROOT)/g/g-os.h
clip.o: $(SRCROOT)/g/g-struct.h
clip.o: $(SRCROOT)/gap4/IO1.h
clip.o: $(SRCROOT)/gap4/clip.h
clip.o: $(SRCROOT)/gap4/dis_readings.h
clip.o: $(SRCROOT)/gap4/edStructs.h
clip.o: $(SRCROOT)/gap4/edUtils.h
clip.o: $(SRCROOT)/gap4/fort.h
clip.o: $(SRCROOT)/gap4/fortran.h
clip.o: $(SRCROOT)/gap4/gap-dbstruct.h
clip.o: $(SRCROOT)/gap4/gap-if.h
clip.o: $(SRCROOT)/gap4/gap_globals.h
clip.o: $(SRCROOT)/gap4/io-reg.h
clip.o: $(SRCROOT)/gap4/io_handle.h
clip.o: $(SRCROOT)/gap4/io_utils.h
clip.o: $(SRCROOT)/gap4/list.h
clip.o: $(SRCROOT)/gap4/primlib.h
clip.o: $(SRCROOT)/gap4/qual.h
clip.o: $(SRCROOT)/gap4/tagDefs.h
clip.o: $(SRCROOT)/gap4/tagUtils.h
clip.o: $(SRCROOT)/gap4/template.h
clip.o: $(SRCROOT)/gap4/tkEdNames.h
clip.o: $(SRCROOT)/gap4/tkEditor.h
clip.o: $(SRCROOT)/gap4/tman_display.h
clip.o: $(SRCROOT)/gap4/undo.h
clip.o: $(SRCROOT)/primer3/src/dpal.h
clip.o: $(SRCROOT)/primer3/src/primer3.h
clip.o: $(SRCROOT)/seq_utils/dna_utils.h
clip.o: $(SRCROOT)/tk_utils/cli_arg.h
clip.o: $(SRCROOT)/tk_utils/intrinsic_type.h
clip.o: $(SRCROOT)/tk_utils/postscript.h
clip.o: $(SRCROOT)/tk_utils/sheet.h
clip.o: $(SRCROOT)/tk_utils/tcl_utils.h
clip.o: $(SRCROOT)/tk_utils/tkSheet.h
clip.o: $(SRCROOT)/tk_utils/tkSheet_common.h
clip.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
clip.o: $(SRCROOT)/tk_utils/tkTrace.h
clones.o: $(PWD)/staden_config.h
clones.o: $(SRCROOT)/Misc/array.h
clones.o: $(SRCROOT)/Misc/bitmap.h
clones.o: $(SRCROOT)/Misc/dstring.h
clones.o: $(SRCROOT)/Misc/misc.h
clones.o: $(SRCROOT)/Misc/os.h
clones.o: $(SRCROOT)/Misc/xalloc.h
clones.o: $(SRCROOT)/Misc/xerror.h
clones.o: $(SRCROOT)/g/freetree.h
clones.o: $(SRCROOT)/g/g-defs.h
clones.o: $(SRCROOT)/g/g-error.h
clones.o: $(SRCROOT)/g/g-filedefs.h
clones.o: $(SRCROOT)/g/g-os.h
clones.o: $(SRCROOT)/g/g-struct.h
clones.o: $(SRCROOT)/gap4/IO1.h
clones.o: $(SRCROOT)/gap4/clones.h
clones.o: $(SRCROOT)/gap4/edStructs.h
clones.o: $(SRCROOT)/gap4/edUtils.h
clones.o: $(SRCROOT)/gap4/fort.h
clones.o: $(SRCROOT)/gap4/fortran.h
clones.o: $(SRCROOT)/gap4/gap-dbstruct.h
clones.o: $(SRCROOT)/gap4/gap-defaults.h
clones.o: $(SRCROOT)/gap4/gap-if.h
clones.o: $(SRCROOT)/gap4/io-reg.h
clones.o: $(SRCROOT)/gap4/io_handle.h
clones.o: $(SRCROOT)/gap4/io_utils.h
clones.o: $(SRCROOT)/gap4/list.h
clones.o: $(SRCROOT)/gap4/notes.h
clones.o: $(SRCROOT)/gap4/primlib.h
clones.o: $(SRCROOT)/gap4/qual.h
clones.o: $(SRCROOT)/gap4/seqInfo.h
clones.o: $(SRCROOT)/gap4/tagDefs.h
clones.o: $(SRCROOT)/gap4/tagUtils.h
clones.o: $(SRCROOT)/gap4/template.h
clones.o: $(SRCROOT)/gap4/tkEdNames.h
clones.o: $(SRCROOT)/gap4/tkEditor.h
clones.o: $(SRCROOT)/gap4/tman_display.h
clones.o: $(SRCROOT)/gap4/undo.h
clones.o: $(SRCROOT)/primer3/src/dpal.h
clones.o: $(SRCROOT)/primer3/src/primer3.h
clones.o: $(SRCROOT)/tk_utils/cli_arg.h
clones.o: $(SRCROOT)/tk_utils/intrinsic_type.h
clones.o: $(SRCROOT)/tk_utils/postscript.h
clones.o: $(SRCROOT)/tk_utils/sheet.h
clones.o: $(SRCROOT)/tk_utils/tkSheet.h
clones.o: $(SRCROOT)/tk_utils/tkSheet_common.h
clones.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
clones.o: $(SRCROOT)/tk_utils/tkTrace.h
complement.o: $(PWD)/staden_config.h
complement.o: $(SRCROOT)/Misc/array.h
complement.o: $(SRCROOT)/Misc/bitmap.h
complement.o: $(SRCROOT)/Misc/dstring.h
complement.o: $(SRCROOT)/Misc/misc.h
complement.o: $(SRCROOT)/Misc/os.h
complement.o: $(SRCROOT)/Misc/xalloc.h
complement.o: $(SRCROOT)/Misc/xerror.h
complement.o: $(SRCROOT)/g/freetree.h
complement.o: $(SRCROOT)/g/g-defs.h
complement.o: $(SRCROOT)/g/g-error.h
complement.o: $(SRCROOT)/g/g-filedefs.h
complement.o: $(SRCROOT)/g/g-os.h
complement.o: $(SRCROOT)/g/g-struct.h
complement.o: $(SRCROOT)/gap4/IO1.h
complement.o: $(SRCROOT)/gap4/complement.h
complement.o: $(SRCROOT)/gap4/edStructs.h
complement.o: $(SRCROOT)/gap4/edUtils.h
complement.o: $(SRCROOT)/gap4/fort.h
complement.o: $(SRCROOT)/gap4/fortran.h
complement.o: $(SRCROOT)/gap4/gap-dbstruct.h
complement.o: $(SRCROOT)/gap4/gap-if.h
complement.o: $(SRCROOT)/gap4/gap_cli_arg.h
complement.o: $(SRCROOT)/gap4/io-reg.h
complement.o: $(SRCROOT)/gap4/io_handle.h
complement.o: $(SRCROOT)/gap4/io_utils.h
complement.o: $(SRCROOT)/gap4/list.h
complement.o: $(SRCROOT)/gap4/list_proc.h
complement.o: $(SRCROOT)/gap4/primlib.h
complement.o: $(SRCROOT)/gap4/qual.h
complement.o: $(SRCROOT)/gap4/tagDefs.h
complement.o: $(SRCROOT)/gap4/tagUtils.h
complement.o: $(SRCROOT)/gap4/template.h
complement.o: $(SRCROOT)/gap4/tkEdNames.h
complement.o: $(SRCROOT)/gap4/tkEditor.h
complement.o: $(SRCROOT)/gap4/tman_display.h
complement.o: $(SRCROOT)/gap4/undo.h
complement.o: $(SRCROOT)/primer3/src/dpal.h
complement.o: $(SRCROOT)/primer3/src/primer3.h
complement.o: $(SRCROOT)/seq_utils/dna_utils.h
complement.o: $(SRCROOT)/tk_utils/cli_arg.h
complement.o: $(SRCROOT)/tk_utils/intrinsic_type.h
complement.o: $(SRCROOT)/tk_utils/postscript.h
complement.o: $(SRCROOT)/tk_utils/sheet.h
complement.o: $(SRCROOT)/tk_utils/tcl_utils.h
complement.o: $(SRCROOT)/tk_utils/tkSheet.h
complement.o: $(SRCROOT)/tk_utils/tkSheet_common.h
complement.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
complement.o: $(SRCROOT)/tk_utils/tkTrace.h
confidence_graph.o: $(PWD)/staden_config.h
confidence_graph.o: $(SRCROOT)/Misc/array.h
confidence_graph.o: $(SRCROOT)/Misc/bitmap.h
confidence_graph.o: $(SRCROOT)/Misc/misc.h
confidence_graph.o: $(SRCROOT)/Misc/os.h
confidence_graph.o: $(SRCROOT)/Misc/xalloc.h
confidence_graph.o: $(SRCROOT)/Misc/xerror.h
confidence_graph.o: $(SRCROOT)/g/freetree.h
confidence_graph.o: $(SRCROOT)/g/g-defs.h
confidence_graph.o: $(SRCROOT)/g/g-error.h
confidence_graph.o: $(SRCROOT)/g/g-filedefs.h
confidence_graph.o: $(SRCROOT)/g/g-os.h
confidence_graph.o: $(SRCROOT)/g/g-struct.h
confidence_graph.o: $(SRCROOT)/gap4/IO1.h
confidence_graph.o: $(SRCROOT)/gap4/confidence_graph.h
confidence_graph.o: $(SRCROOT)/gap4/consen.h
confidence_graph.o: $(SRCROOT)/gap4/consistency_display.h
confidence_graph.o: $(SRCROOT)/gap4/gap-dbstruct.h
confidence_graph.o: $(SRCROOT)/gap4/gap-if.h
confidence_graph.o: $(SRCROOT)/gap4/gap_canvas_box.h
confidence_graph.o: $(SRCROOT)/gap4/gap_globals.h
confidence_graph.o: $(SRCROOT)/gap4/io-reg.h
confidence_graph.o: $(SRCROOT)/gap4/io_handle.h
confidence_graph.o: $(SRCROOT)/gap4/io_utils.h
confidence_graph.o: $(SRCROOT)/gap4/list.h
confidence_graph.o: $(SRCROOT)/gap4/newgap_cmds.h
confidence_graph.o: $(SRCROOT)/gap4/qual.h
confidence_graph.o: $(SRCROOT)/gap4/ruler_display.h
confidence_graph.o: $(SRCROOT)/tk_utils/canvas_box.h
confidence_graph.o: $(SRCROOT)/tk_utils/tclXkeylist.h
confidence_graph.o: $(SRCROOT)/tk_utils/tcl_utils.h
confidence_graph.o: $(SRCROOT)/tk_utils/text_output.h
consen.o: $(PWD)/staden_config.h
consen.o: $(SRCROOT)/Misc/FtoC.h
consen.o: $(SRCROOT)/Misc/array.h
consen.o: $(SRCROOT)/Misc/bitmap.h
consen.o: $(SRCROOT)/Misc/dstring.h
consen.o: $(SRCROOT)/Misc/misc.h
consen.o: $(SRCROOT)/Misc/os.h
consen.o: $(SRCROOT)/Misc/xalloc.h
consen.o: $(SRCROOT)/Misc/xerror.h
consen.o: $(SRCROOT)/g/freetree.h
consen.o: $(SRCROOT)/g/g-defs.h
consen.o: $(SRCROOT)/g/g-error.h
consen.o: $(SRCROOT)/g/g-filedefs.h
consen.o: $(SRCROOT)/g/g-os.h
consen.o: $(SRCROOT)/g/g-struct.h
consen.o: $(SRCROOT)/gap4/IO1.h
consen.o: $(SRCROOT)/gap4/consen.h
consen.o: $(SRCROOT)/gap4/edStructs.h
consen.o: $(SRCROOT)/gap4/edUtils.h
consen.o: $(SRCROOT)/gap4/extract.h
consen.o: $(SRCROOT)/gap4/fort.h
consen.o: $(SRCROOT)/gap4/fortran.h
consen.o: $(SRCROOT)/gap4/gap-dbstruct.h
consen.o: $(SRCROOT)/gap4/gap-if.h
consen.o: $(SRCROOT)/gap4/gap_globals.h
consen.o: $(SRCROOT)/gap4/io-reg.h
consen.o: $(SRCROOT)/gap4/io_handle.h
consen.o: $(SRCROOT)/gap4/io_utils.h
consen.o: $(SRCROOT)/gap4/list.h
consen.o: $(SRCROOT)/gap4/list_proc.h
consen.o: $(SRCROOT)/gap4/primlib.h
consen.o: $(SRCROOT)/gap4/qual.h
consen.o: $(SRCROOT)/gap4/tagDefs.h
consen.o: $(SRCROOT)/gap4/tagUtils.h
consen.o: $(SRCROOT)/gap4/template.h
consen.o: $(SRCROOT)/gap4/tkEdNames.h
consen.o: $(SRCROOT)/gap4/tkEditor.h
consen.o: $(SRCROOT)/gap4/tman_display.h
consen.o: $(SRCROOT)/gap4/undo.h
consen.o: $(SRCROOT)/primer3/src/dpal.h
consen.o: $(SRCROOT)/primer3/src/primer3.h
consen.o: $(SRCROOT)/seq_utils/align_lib.h
consen.o: $(SRCROOT)/seq_utils/dna_utils.h
consen.o: $(SRCROOT)/tk_utils/cli_arg.h
consen.o: $(SRCROOT)/tk_utils/intrinsic_type.h
consen.o: $(SRCROOT)/tk_utils/postscript.h
consen.o: $(SRCROOT)/tk_utils/sheet.h
consen.o: $(SRCROOT)/tk_utils/tcl_utils.h
consen.o: $(SRCROOT)/tk_utils/tkSheet.h
consen.o: $(SRCROOT)/tk_utils/tkSheet_common.h
consen.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
consen.o: $(SRCROOT)/tk_utils/tkTrace.h
consistency_canvas_box.o: $(PWD)/staden_config.h
consistency_canvas_box.o: $(SRCROOT)/Misc/array.h
consistency_canvas_box.o: $(SRCROOT)/Misc/bitmap.h
consistency_canvas_box.o: $(SRCROOT)/Misc/os.h
consistency_canvas_box.o: $(SRCROOT)/Misc/xerror.h
consistency_canvas_box.o: $(SRCROOT)/g/freetree.h
consistency_canvas_box.o: $(SRCROOT)/g/g-defs.h
consistency_canvas_box.o: $(SRCROOT)/g/g-error.h
consistency_canvas_box.o: $(SRCROOT)/g/g-filedefs.h
consistency_canvas_box.o: $(SRCROOT)/g/g-os.h
consistency_canvas_box.o: $(SRCROOT)/g/g-struct.h
consistency_canvas_box.o: $(SRCROOT)/gap4/IO1.h
consistency_canvas_box.o: $(SRCROOT)/gap4/consistency_display.h
consistency_canvas_box.o: $(SRCROOT)/gap4/gap-dbstruct.h
consistency_canvas_box.o: $(SRCROOT)/gap4/gap-if.h
consistency_canvas_box.o: $(SRCROOT)/gap4/gap_canvas_box.h
consistency_canvas_box.o: $(SRCROOT)/gap4/io-reg.h
consistency_canvas_box.o: $(SRCROOT)/gap4/io_handle.h
consistency_canvas_box.o: $(SRCROOT)/gap4/io_utils.h
consistency_canvas_box.o: $(SRCROOT)/tk_utils/canvas_box.h
consistency_display.o: $(PWD)/staden_config.h
consistency_display.o: $(SRCROOT)/Misc/array.h
consistency_display.o: $(SRCROOT)/Misc/bitmap.h
consistency_display.o: $(SRCROOT)/Misc/misc.h
consistency_display.o: $(SRCROOT)/Misc/os.h
consistency_display.o: $(SRCROOT)/Misc/xalloc.h
consistency_display.o: $(SRCROOT)/Misc/xerror.h
consistency_display.o: $(SRCROOT)/g/freetree.h
consistency_display.o: $(SRCROOT)/g/g-defs.h
consistency_display.o: $(SRCROOT)/g/g-error.h
consistency_display.o: $(SRCROOT)/g/g-filedefs.h
consistency_display.o: $(SRCROOT)/g/g-os.h
consistency_display.o: $(SRCROOT)/g/g-struct.h
consistency_display.o: $(SRCROOT)/gap4/IO1.h
consistency_display.o: $(SRCROOT)/gap4/consistency_canvas_box.h
consistency_display.o: $(SRCROOT)/gap4/consistency_display.h
consistency_display.o: $(SRCROOT)/gap4/gap-dbstruct.h
consistency_display.o: $(SRCROOT)/gap4/gap-if.h
consistency_display.o: $(SRCROOT)/gap4/gap_canvas_box.h
consistency_display.o: $(SRCROOT)/gap4/gap_globals.h
consistency_display.o: $(SRCROOT)/gap4/hash.h
consistency_display.o: $(SRCROOT)/gap4/io-reg.h
consistency_display.o: $(SRCROOT)/gap4/io_handle.h
consistency_display.o: $(SRCROOT)/gap4/io_utils.h
consistency_display.o: $(SRCROOT)/gap4/list.h
consistency_display.o: $(SRCROOT)/gap4/ruler_display.h
consistency_display.o: $(SRCROOT)/gap4/template.h
consistency_display.o: $(SRCROOT)/gap4/template_display.h
consistency_display.o: $(SRCROOT)/tk_utils/canvas_box.h
consistency_display.o: $(SRCROOT)/tk_utils/ruler_tick.h
consistency_display.o: $(SRCROOT)/tk_utils/tcl_utils.h
contigEditor.o: $(PWD)/staden_config.h
contigEditor.o: $(SRCROOT)/Misc/array.h
contigEditor.o: $(SRCROOT)/Misc/bitmap.h
contigEditor.o: $(SRCROOT)/Misc/dstring.h
contigEditor.o: $(SRCROOT)/Misc/locks.h
contigEditor.o: $(SRCROOT)/Misc/misc.h
contigEditor.o: $(SRCROOT)/Misc/os.h
contigEditor.o: $(SRCROOT)/Misc/xalloc.h
contigEditor.o: $(SRCROOT)/Misc/xerror.h
contigEditor.o: $(SRCROOT)/g/freetree.h
contigEditor.o: $(SRCROOT)/g/g-defs.h
contigEditor.o: $(SRCROOT)/g/g-error.h
contigEditor.o: $(SRCROOT)/g/g-filedefs.h
contigEditor.o: $(SRCROOT)/g/g-os.h
contigEditor.o: $(SRCROOT)/g/g-struct.h
contigEditor.o: $(SRCROOT)/gap4/IO1.h
contigEditor.o: $(SRCROOT)/gap4/contigEditor.h
contigEditor.o: $(SRCROOT)/gap4/edStructs.h
contigEditor.o: $(SRCROOT)/gap4/edUtils.h
contigEditor.o: $(SRCROOT)/gap4/fort.h
contigEditor.o: $(SRCROOT)/gap4/fortran.h
contigEditor.o: $(SRCROOT)/gap4/gap-dbstruct.h
contigEditor.o: $(SRCROOT)/gap4/gap-if.h
contigEditor.o: $(SRCROOT)/gap4/gap_cli_arg.h
contigEditor.o: $(SRCROOT)/gap4/gap_globals.h
contigEditor.o: $(SRCROOT)/gap4/io-reg.h
contigEditor.o: $(SRCROOT)/gap4/io_handle.h
contigEditor.o: $(SRCROOT)/gap4/io_utils.h
contigEditor.o: $(SRCROOT)/gap4/list.h
contigEditor.o: $(SRCROOT)/gap4/list_proc.h
contigEditor.o: $(SRCROOT)/gap4/primlib.h
contigEditor.o: $(SRCROOT)/gap4/qual.h
contigEditor.o: $(SRCROOT)/gap4/select.h
contigEditor.o: $(SRCROOT)/gap4/tagDefs.h
contigEditor.o: $(SRCROOT)/gap4/tagUtils.h
contigEditor.o: $(SRCROOT)/gap4/template.h
contigEditor.o: $(SRCROOT)/gap4/tkEdNames.h
contigEditor.o: $(SRCROOT)/gap4/tkEditor.h
contigEditor.o: $(SRCROOT)/gap4/tman_display.h
contigEditor.o: $(SRCROOT)/gap4/tman_interface.h
contigEditor.o: $(SRCROOT)/gap4/undo.h
contigEditor.o: $(SRCROOT)/primer3/src/dpal.h
contigEditor.o: $(SRCROOT)/primer3/src/primer3.h
contigEditor.o: $(SRCROOT)/tk_utils/cli_arg.h
contigEditor.o: $(SRCROOT)/tk_utils/intrinsic_type.h
contigEditor.o: $(SRCROOT)/tk_utils/postscript.h
contigEditor.o: $(SRCROOT)/tk_utils/sheet.h
contigEditor.o: $(SRCROOT)/tk_utils/tclXkeylist.h
contigEditor.o: $(SRCROOT)/tk_utils/tcl_utils.h
contigEditor.o: $(SRCROOT)/tk_utils/tkSheet.h
contigEditor.o: $(SRCROOT)/tk_utils/tkSheet_common.h
contigEditor.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
contigEditor.o: $(SRCROOT)/tk_utils/tkTrace.h
contig_order.o: $(PWD)/staden_config.h
contig_order.o: $(SRCROOT)/Misc/array.h
contig_order.o: $(SRCROOT)/Misc/bitmap.h
contig_order.o: $(SRCROOT)/Misc/misc.h
contig_order.o: $(SRCROOT)/Misc/os.h
contig_order.o: $(SRCROOT)/Misc/xalloc.h
contig_order.o: $(SRCROOT)/Misc/xerror.h
contig_order.o: $(SRCROOT)/g/freetree.h
contig_order.o: $(SRCROOT)/g/g-defs.h
contig_order.o: $(SRCROOT)/g/g-error.h
contig_order.o: $(SRCROOT)/g/g-filedefs.h
contig_order.o: $(SRCROOT)/g/g-os.h
contig_order.o: $(SRCROOT)/g/g-struct.h
contig_order.o: $(SRCROOT)/gap4/IO1.h
contig_order.o: $(SRCROOT)/gap4/QueueInterface.h
contig_order.o: $(SRCROOT)/gap4/SeqQueueTypes.h
contig_order.o: $(SRCROOT)/gap4/gap-dbstruct.h
contig_order.o: $(SRCROOT)/gap4/gap-if.h
contig_order.o: $(SRCROOT)/gap4/io-reg.h
contig_order.o: $(SRCROOT)/gap4/io_handle.h
contig_order.o: $(SRCROOT)/gap4/io_utils.h
contig_order.o: $(SRCROOT)/gap4/list.h
contig_order.o: $(SRCROOT)/gap4/template.h
contig_selector.o: $(PWD)/staden_config.h
contig_selector.o: $(SRCROOT)/Misc/array.h
contig_selector.o: $(SRCROOT)/Misc/bitmap.h
contig_selector.o: $(SRCROOT)/Misc/dstring.h
contig_selector.o: $(SRCROOT)/Misc/misc.h
contig_selector.o: $(SRCROOT)/Misc/os.h
contig_selector.o: $(SRCROOT)/Misc/xalloc.h
contig_selector.o: $(SRCROOT)/Misc/xerror.h
contig_selector.o: $(SRCROOT)/g/freetree.h
contig_selector.o: $(SRCROOT)/g/g-defs.h
contig_selector.o: $(SRCROOT)/g/g-error.h
contig_selector.o: $(SRCROOT)/g/g-filedefs.h
contig_selector.o: $(SRCROOT)/g/g-os.h
contig_selector.o: $(SRCROOT)/g/g-struct.h
contig_selector.o: $(SRCROOT)/gap4/IO1.h
contig_selector.o: $(SRCROOT)/gap4/active_tags.h
contig_selector.o: $(SRCROOT)/gap4/complement.h
contig_selector.o: $(SRCROOT)/gap4/contigEditor.h
contig_selector.o: $(SRCROOT)/gap4/contig_selector.h
contig_selector.o: $(SRCROOT)/gap4/cs-object.h
contig_selector.o: $(SRCROOT)/gap4/edStructs.h
contig_selector.o: $(SRCROOT)/gap4/edUtils.h
contig_selector.o: $(SRCROOT)/gap4/fort.h
contig_selector.o: $(SRCROOT)/gap4/fortran.h
contig_selector.o: $(SRCROOT)/gap4/gap-dbstruct.h
contig_selector.o: $(SRCROOT)/gap4/gap-if.h
contig_selector.o: $(SRCROOT)/gap4/gap_globals.h
contig_selector.o: $(SRCROOT)/gap4/hash.h
contig_selector.o: $(SRCROOT)/gap4/io-reg.h
contig_selector.o: $(SRCROOT)/gap4/io_handle.h
contig_selector.o: $(SRCROOT)/gap4/io_utils.h
contig_selector.o: $(SRCROOT)/gap4/list.h
contig_selector.o: $(SRCROOT)/gap4/newgap_cmds.h
contig_selector.o: $(SRCROOT)/gap4/primlib.h
contig_selector.o: $(SRCROOT)/gap4/qual.h
contig_selector.o: $(SRCROOT)/gap4/ruler_display.h
contig_selector.o: $(SRCROOT)/gap4/tagDefs.h
contig_selector.o: $(SRCROOT)/gap4/tagUtils.h
contig_selector.o: $(SRCROOT)/gap4/tagdb.h
contig_selector.o: $(SRCROOT)/gap4/template.h
contig_selector.o: $(SRCROOT)/gap4/template_display.h
contig_selector.o: $(SRCROOT)/gap4/tkEdNames.h
contig_selector.o: $(SRCROOT)/gap4/tkEditor.h
contig_selector.o: $(SRCROOT)/gap4/tman_display.h
contig_selector.o: $(SRCROOT)/gap4/undo.h
contig_selector.o: $(SRCROOT)/primer3/src/dpal.h
contig_selector.o: $(SRCROOT)/primer3/src/primer3.h
contig_selector.o: $(SRCROOT)/tk_utils/canvas_box.h
contig_selector.o: $(SRCROOT)/tk_utils/cli_arg.h
contig_selector.o: $(SRCROOT)/tk_utils/intrinsic_type.h
contig_selector.o: $(SRCROOT)/tk_utils/postscript.h
contig_selector.o: $(SRCROOT)/tk_utils/sheet.h
contig_selector.o: $(SRCROOT)/tk_utils/tclXkeylist.h
contig_selector.o: $(SRCROOT)/tk_utils/tcl_utils.h
contig_selector.o: $(SRCROOT)/tk_utils/text_output.h
contig_selector.o: $(SRCROOT)/tk_utils/tkSheet.h
contig_selector.o: $(SRCROOT)/tk_utils/tkSheet_common.h
contig_selector.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
contig_selector.o: $(SRCROOT)/tk_utils/tkTrace.h
copy_db.o: $(PWD)/staden_config.h
copy_db.o: $(SRCROOT)/Misc/array.h
copy_db.o: $(SRCROOT)/Misc/bitmap.h
copy_db.o: $(SRCROOT)/Misc/misc.h
copy_db.o: $(SRCROOT)/Misc/os.h
copy_db.o: $(SRCROOT)/Misc/xalloc.h
copy_db.o: $(SRCROOT)/Misc/xerror.h
copy_db.o: $(SRCROOT)/g/freetree.h
copy_db.o: $(SRCROOT)/g/g-defs.h
copy_db.o: $(SRCROOT)/g/g-error.h
copy_db.o: $(SRCROOT)/g/g-filedefs.h
copy_db.o: $(SRCROOT)/g/g-os.h
copy_db.o: $(SRCROOT)/g/g-struct.h
copy_db.o: $(SRCROOT)/gap4/IO1.h
copy_db.o: $(SRCROOT)/gap4/copy_db.h
copy_db.o: $(SRCROOT)/gap4/gap-dbstruct.h
copy_db.o: $(SRCROOT)/gap4/gap-if.h
copy_db.o: $(SRCROOT)/gap4/io_handle.h
copy_db.o: $(SRCROOT)/gap4/io_utils.h
copy_db.o: $(SRCROOT)/tk_utils/text_output.h
copy_db_main.o: $(PWD)/staden_config.h
copy_db_main.o: $(SRCROOT)/Misc/array.h
copy_db_main.o: $(SRCROOT)/Misc/bitmap.h
copy_db_main.o: $(SRCROOT)/Misc/misc.h
copy_db_main.o: $(SRCROOT)/Misc/os.h
copy_db_main.o: $(SRCROOT)/Misc/xalloc.h
copy_db_main.o: $(SRCROOT)/Misc/xerror.h
copy_db_main.o: $(SRCROOT)/g/freetree.h
copy_db_main.o: $(SRCROOT)/g/g-defs.h
copy_db_main.o: $(SRCROOT)/g/g-error.h
copy_db_main.o: $(SRCROOT)/g/g-filedefs.h
copy_db_main.o: $(SRCROOT)/g/g-os.h
copy_db_main.o: $(SRCROOT)/g/g-struct.h
copy_db_main.o: $(SRCROOT)/gap4/IO1.h
copy_db_main.o: $(SRCROOT)/gap4/copy_db.h
copy_db_main.o: $(SRCROOT)/gap4/gap-create.h
copy_db_main.o: $(SRCROOT)/gap4/gap-dbstruct.h
copy_db_main.o: $(SRCROOT)/gap4/gap-if.h
copy_db_main.o: $(SRCROOT)/gap4/io_handle.h
copy_db_main.o: $(SRCROOT)/gap4/io_utils.h
cs-object.o: $(PWD)/staden_config.h
cs-object.o: $(SRCROOT)/Misc/array.h
cs-object.o: $(SRCROOT)/Misc/bitmap.h
cs-object.o: $(SRCROOT)/Misc/misc.h
cs-object.o: $(SRCROOT)/Misc/os.h
cs-object.o: $(SRCROOT)/Misc/xalloc.h
cs-object.o: $(SRCROOT)/Misc/xerror.h
cs-object.o: $(SRCROOT)/g/freetree.h
cs-object.o: $(SRCROOT)/g/g-defs.h
cs-object.o: $(SRCROOT)/g/g-error.h
cs-object.o: $(SRCROOT)/g/g-filedefs.h
cs-object.o: $(SRCROOT)/g/g-os.h
cs-object.o: $(SRCROOT)/g/g-struct.h
cs-object.o: $(SRCROOT)/gap4/IO1.h
cs-object.o: $(SRCROOT)/gap4/contig_selector.h
cs-object.o: $(SRCROOT)/gap4/cs-object.h
cs-object.o: $(SRCROOT)/gap4/gap-dbstruct.h
cs-object.o: $(SRCROOT)/gap4/gap-if.h
cs-object.o: $(SRCROOT)/gap4/gap_globals.h
cs-object.o: $(SRCROOT)/gap4/io-reg.h
cs-object.o: $(SRCROOT)/gap4/io_handle.h
cs-object.o: $(SRCROOT)/gap4/io_utils.h
cs-object.o: $(SRCROOT)/gap4/list.h
cs-object.o: $(SRCROOT)/gap4/newgap_cmds.h
cs-object.o: $(SRCROOT)/gap4/tk-io-reg.h
cs-object.o: $(SRCROOT)/tk_utils/canvas_box.h
cs-object.o: $(SRCROOT)/tk_utils/tcl_utils.h
cs-object.o: $(SRCROOT)/tk_utils/text_output.h
dbcheck.o: $(PWD)/staden_config.h
dbcheck.o: $(SRCROOT)/Misc/array.h
dbcheck.o: $(SRCROOT)/Misc/bitmap.h
dbcheck.o: $(SRCROOT)/Misc/misc.h
dbcheck.o: $(SRCROOT)/Misc/os.h
dbcheck.o: $(SRCROOT)/Misc/xalloc.h
dbcheck.o: $(SRCROOT)/Misc/xerror.h
dbcheck.o: $(SRCROOT)/g/freetree.h
dbcheck.o: $(SRCROOT)/g/g-defs.h
dbcheck.o: $(SRCROOT)/g/g-error.h
dbcheck.o: $(SRCROOT)/g/g-filedefs.h
dbcheck.o: $(SRCROOT)/g/g-os.h
dbcheck.o: $(SRCROOT)/g/g-struct.h
dbcheck.o: $(SRCROOT)/gap4/IO1.h
dbcheck.o: $(SRCROOT)/gap4/dbcheck.h
dbcheck.o: $(SRCROOT)/gap4/fort.h
dbcheck.o: $(SRCROOT)/gap4/fortran.h
dbcheck.o: $(SRCROOT)/gap4/gap-dbstruct.h
dbcheck.o: $(SRCROOT)/gap4/gap-error.h
dbcheck.o: $(SRCROOT)/gap4/gap-if.h
dbcheck.o: $(SRCROOT)/gap4/gap_globals.h
dbcheck.o: $(SRCROOT)/gap4/io_handle.h
dbcheck.o: $(SRCROOT)/gap4/io_utils.h
dbcheck.o: $(SRCROOT)/tk_utils/tcl_utils.h
dbcheck.o: $(SRCROOT)/tk_utils/text_output.h
dis_readings.o: $(PWD)/staden_config.h
dis_readings.o: $(SRCROOT)/Misc/array.h
dis_readings.o: $(SRCROOT)/Misc/bitmap.h
dis_readings.o: $(SRCROOT)/Misc/dstring.h
dis_readings.o: $(SRCROOT)/Misc/misc.h
dis_readings.o: $(SRCROOT)/Misc/os.h
dis_readings.o: $(SRCROOT)/Misc/xalloc.h
dis_readings.o: $(SRCROOT)/Misc/xerror.h
dis_readings.o: $(SRCROOT)/g/freetree.h
dis_readings.o: $(SRCROOT)/g/g-defs.h
dis_readings.o: $(SRCROOT)/g/g-error.h
dis_readings.o: $(SRCROOT)/g/g-filedefs.h
dis_readings.o: $(SRCROOT)/g/g-os.h
dis_readings.o: $(SRCROOT)/g/g-struct.h
dis_readings.o: $(SRCROOT)/gap4/IO1.h
dis_readings.o: $(SRCROOT)/gap4/IO2.h
dis_readings.o: $(SRCROOT)/gap4/dbcheck.h
dis_readings.o: $(SRCROOT)/gap4/dis_readings.h
dis_readings.o: $(SRCROOT)/gap4/edStructs.h
dis_readings.o: $(SRCROOT)/gap4/edUtils.h
dis_readings.o: $(SRCROOT)/gap4/fort.h
dis_readings.o: $(SRCROOT)/gap4/fortran.h
dis_readings.o: $(SRCROOT)/gap4/gap-dbstruct.h
dis_readings.o: $(SRCROOT)/gap4/gap-if.h
dis_readings.o: $(SRCROOT)/gap4/io-reg.h
dis_readings.o: $(SRCROOT)/gap4/io_handle.h
dis_readings.o: $(SRCROOT)/gap4/io_utils.h
dis_readings.o: $(SRCROOT)/gap4/list.h
dis_readings.o: $(SRCROOT)/gap4/list_proc.h
dis_readings.o: $(SRCROOT)/gap4/notes.h
dis_readings.o: $(SRCROOT)/gap4/primlib.h
dis_readings.o: $(SRCROOT)/gap4/qual.h
dis_readings.o: $(SRCROOT)/gap4/tagDefs.h
dis_readings.o: $(SRCROOT)/gap4/tagUtils.h
dis_readings.o: $(SRCROOT)/gap4/template.h
dis_readings.o: $(SRCROOT)/gap4/tkEdNames.h
dis_readings.o: $(SRCROOT)/gap4/tkEditor.h
dis_readings.o: $(SRCROOT)/gap4/tman_display.h
dis_readings.o: $(SRCROOT)/gap4/undo.h
dis_readings.o: $(SRCROOT)/primer3/src/dpal.h
dis_readings.o: $(SRCROOT)/primer3/src/primer3.h
dis_readings.o: $(SRCROOT)/tk_utils/cli_arg.h
dis_readings.o: $(SRCROOT)/tk_utils/intrinsic_type.h
dis_readings.o: $(SRCROOT)/tk_utils/postscript.h
dis_readings.o: $(SRCROOT)/tk_utils/sheet.h
dis_readings.o: $(SRCROOT)/tk_utils/tkSheet.h
dis_readings.o: $(SRCROOT)/tk_utils/tkSheet_common.h
dis_readings.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
dis_readings.o: $(SRCROOT)/tk_utils/tkTrace.h
do_fij.o: $(PWD)/staden_config.h
do_fij.o: $(SRCROOT)/Misc/array.h
do_fij.o: $(SRCROOT)/Misc/bitmap.h
do_fij.o: $(SRCROOT)/Misc/misc.h
do_fij.o: $(SRCROOT)/Misc/os.h
do_fij.o: $(SRCROOT)/Misc/xalloc.h
do_fij.o: $(SRCROOT)/Misc/xerror.h
do_fij.o: $(SRCROOT)/g/freetree.h
do_fij.o: $(SRCROOT)/g/g-defs.h
do_fij.o: $(SRCROOT)/g/g-error.h
do_fij.o: $(SRCROOT)/g/g-filedefs.h
do_fij.o: $(SRCROOT)/g/g-os.h
do_fij.o: $(SRCROOT)/g/g-struct.h
do_fij.o: $(SRCROOT)/gap4/IO1.h
do_fij.o: $(SRCROOT)/gap4/consen.h
do_fij.o: $(SRCROOT)/gap4/fij.h
do_fij.o: $(SRCROOT)/gap4/gap-dbstruct.h
do_fij.o: $(SRCROOT)/gap4/gap-if.h
do_fij.o: $(SRCROOT)/gap4/hash_lib.h
do_fij.o: $(SRCROOT)/gap4/io_handle.h
do_fij.o: $(SRCROOT)/gap4/io_utils.h
do_fij.o: $(SRCROOT)/seq_utils/align_lib.h
do_fij.o: $(SRCROOT)/seq_utils/dna_utils.h
dstrand.o: $(PWD)/staden_config.h
dstrand.o: $(SRCROOT)/Misc/FtoC.h
dstrand.o: $(SRCROOT)/Misc/array.h
dstrand.o: $(SRCROOT)/Misc/bitmap.h
dstrand.o: $(SRCROOT)/Misc/dstring.h
dstrand.o: $(SRCROOT)/Misc/misc.h
dstrand.o: $(SRCROOT)/Misc/os.h
dstrand.o: $(SRCROOT)/Misc/xalloc.h
dstrand.o: $(SRCROOT)/Misc/xerror.h
dstrand.o: $(SRCROOT)/g/freetree.h
dstrand.o: $(SRCROOT)/g/g-defs.h
dstrand.o: $(SRCROOT)/g/g-error.h
dstrand.o: $(SRCROOT)/g/g-filedefs.h
dstrand.o: $(SRCROOT)/g/g-os.h
dstrand.o: $(SRCROOT)/g/g-struct.h
dstrand.o: $(SRCROOT)/gap4/IO1.h
dstrand.o: $(SRCROOT)/gap4/IO2.h
dstrand.o: $(SRCROOT)/gap4/complement.h
dstrand.o: $(SRCROOT)/gap4/dstrand.h
dstrand.o: $(SRCROOT)/gap4/edStructs.h
dstrand.o: $(SRCROOT)/gap4/edUtils.h
dstrand.o: $(SRCROOT)/gap4/fort.h
dstrand.o: $(SRCROOT)/gap4/fortran.h
dstrand.o: $(SRCROOT)/gap4/gap-dbstruct.h
dstrand.o: $(SRCROOT)/gap4/gap-if.h
dstrand.o: $(SRCROOT)/gap4/gap_globals.h
dstrand.o: $(SRCROOT)/gap4/io-reg.h
dstrand.o: $(SRCROOT)/gap4/io_handle.h
dstrand.o: $(SRCROOT)/gap4/io_utils.h
dstrand.o: $(SRCROOT)/gap4/list.h
dstrand.o: $(SRCROOT)/gap4/primlib.h
dstrand.o: $(SRCROOT)/gap4/qual.h
dstrand.o: $(SRCROOT)/gap4/tagDefs.h
dstrand.o: $(SRCROOT)/gap4/tagUtils.h
dstrand.o: $(SRCROOT)/gap4/template.h
dstrand.o: $(SRCROOT)/gap4/tkEdNames.h
dstrand.o: $(SRCROOT)/gap4/tkEditor.h
dstrand.o: $(SRCROOT)/gap4/tman_display.h
dstrand.o: $(SRCROOT)/gap4/undo.h
dstrand.o: $(SRCROOT)/primer3/src/dpal.h
dstrand.o: $(SRCROOT)/primer3/src/primer3.h
dstrand.o: $(SRCROOT)/seq_utils/align.h
dstrand.o: $(SRCROOT)/seq_utils/align_lib_old.h
dstrand.o: $(SRCROOT)/tk_utils/cli_arg.h
dstrand.o: $(SRCROOT)/tk_utils/intrinsic_type.h
dstrand.o: $(SRCROOT)/tk_utils/postscript.h
dstrand.o: $(SRCROOT)/tk_utils/sheet.h
dstrand.o: $(SRCROOT)/tk_utils/tcl_utils.h
dstrand.o: $(SRCROOT)/tk_utils/text_output.h
dstrand.o: $(SRCROOT)/tk_utils/tkSheet.h
dstrand.o: $(SRCROOT)/tk_utils/tkSheet_common.h
dstrand.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
dstrand.o: $(SRCROOT)/tk_utils/tkTrace.h
edCommands.o: $(PWD)/staden_config.h
edCommands.o: $(SRCROOT)/Misc/array.h
edCommands.o: $(SRCROOT)/Misc/bitmap.h
edCommands.o: $(SRCROOT)/Misc/dstring.h
edCommands.o: $(SRCROOT)/Misc/misc.h
edCommands.o: $(SRCROOT)/Misc/os.h
edCommands.o: $(SRCROOT)/Misc/xalloc.h
edCommands.o: $(SRCROOT)/Misc/xerror.h
edCommands.o: $(SRCROOT)/g/freetree.h
edCommands.o: $(SRCROOT)/g/g-defs.h
edCommands.o: $(SRCROOT)/g/g-error.h
edCommands.o: $(SRCROOT)/g/g-filedefs.h
edCommands.o: $(SRCROOT)/g/g-os.h
edCommands.o: $(SRCROOT)/g/g-struct.h
edCommands.o: $(SRCROOT)/gap4/IO1.h
edCommands.o: $(SRCROOT)/gap4/edStructs.h
edCommands.o: $(SRCROOT)/gap4/edUtils.h
edCommands.o: $(SRCROOT)/gap4/fort.h
edCommands.o: $(SRCROOT)/gap4/fortran.h
edCommands.o: $(SRCROOT)/gap4/gap-dbstruct.h
edCommands.o: $(SRCROOT)/gap4/gap-if.h
edCommands.o: $(SRCROOT)/gap4/gap_globals.h
edCommands.o: $(SRCROOT)/gap4/io-reg.h
edCommands.o: $(SRCROOT)/gap4/io_handle.h
edCommands.o: $(SRCROOT)/gap4/io_utils.h
edCommands.o: $(SRCROOT)/gap4/list.h
edCommands.o: $(SRCROOT)/gap4/primlib.h
edCommands.o: $(SRCROOT)/gap4/qual.h
edCommands.o: $(SRCROOT)/gap4/select.h
edCommands.o: $(SRCROOT)/gap4/tagDefs.h
edCommands.o: $(SRCROOT)/gap4/tagUtils.h
edCommands.o: $(SRCROOT)/gap4/template.h
edCommands.o: $(SRCROOT)/gap4/tkEdNames.h
edCommands.o: $(SRCROOT)/gap4/tkEditor.h
edCommands.o: $(SRCROOT)/gap4/tman_display.h
edCommands.o: $(SRCROOT)/gap4/tman_interface.h
edCommands.o: $(SRCROOT)/gap4/undo.h
edCommands.o: $(SRCROOT)/primer3/src/dpal.h
edCommands.o: $(SRCROOT)/primer3/src/primer3.h
edCommands.o: $(SRCROOT)/seq_utils/align.h
edCommands.o: $(SRCROOT)/seq_utils/align_lib_old.h
edCommands.o: $(SRCROOT)/tk_utils/cli_arg.h
edCommands.o: $(SRCROOT)/tk_utils/intrinsic_type.h
edCommands.o: $(SRCROOT)/tk_utils/postscript.h
edCommands.o: $(SRCROOT)/tk_utils/sheet.h
edCommands.o: $(SRCROOT)/tk_utils/tcl_utils.h
edCommands.o: $(SRCROOT)/tk_utils/tkSheet.h
edCommands.o: $(SRCROOT)/tk_utils/tkSheet_common.h
edCommands.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
edCommands.o: $(SRCROOT)/tk_utils/tkTrace.h
edExtend.o: $(PWD)/staden_config.h
edExtend.o: $(SRCROOT)/Misc/array.h
edExtend.o: $(SRCROOT)/Misc/bitmap.h
edExtend.o: $(SRCROOT)/Misc/dstring.h
edExtend.o: $(SRCROOT)/Misc/misc.h
edExtend.o: $(SRCROOT)/Misc/os.h
edExtend.o: $(SRCROOT)/Misc/xalloc.h
edExtend.o: $(SRCROOT)/Misc/xerror.h
edExtend.o: $(SRCROOT)/g/freetree.h
edExtend.o: $(SRCROOT)/g/g-defs.h
edExtend.o: $(SRCROOT)/g/g-error.h
edExtend.o: $(SRCROOT)/g/g-filedefs.h
edExtend.o: $(SRCROOT)/g/g-os.h
edExtend.o: $(SRCROOT)/g/g-struct.h
edExtend.o: $(SRCROOT)/gap4/IO1.h
edExtend.o: $(SRCROOT)/gap4/contigEditor.h
edExtend.o: $(SRCROOT)/gap4/edStructs.h
edExtend.o: $(SRCROOT)/gap4/edUtils.h
edExtend.o: $(SRCROOT)/gap4/extend.h
edExtend.o: $(SRCROOT)/gap4/fort.h
edExtend.o: $(SRCROOT)/gap4/fortran.h
edExtend.o: $(SRCROOT)/gap4/gap-dbstruct.h
edExtend.o: $(SRCROOT)/gap4/gap-if.h
edExtend.o: $(SRCROOT)/gap4/io-reg.h
edExtend.o: $(SRCROOT)/gap4/io_handle.h
edExtend.o: $(SRCROOT)/gap4/io_utils.h
edExtend.o: $(SRCROOT)/gap4/list.h
edExtend.o: $(SRCROOT)/gap4/primlib.h
edExtend.o: $(SRCROOT)/gap4/qual.h
edExtend.o: $(SRCROOT)/gap4/select.h
edExtend.o: $(SRCROOT)/gap4/tagDefs.h
edExtend.o: $(SRCROOT)/gap4/tagUtils.h
edExtend.o: $(SRCROOT)/gap4/template.h
edExtend.o: $(SRCROOT)/gap4/tkEdNames.h
edExtend.o: $(SRCROOT)/gap4/tkEditor.h
edExtend.o: $(SRCROOT)/gap4/tman_display.h
edExtend.o: $(SRCROOT)/gap4/undo.h
edExtend.o: $(SRCROOT)/primer3/src/dpal.h
edExtend.o: $(SRCROOT)/primer3/src/primer3.h
edExtend.o: $(SRCROOT)/tk_utils/cli_arg.h
edExtend.o: $(SRCROOT)/tk_utils/intrinsic_type.h
edExtend.o: $(SRCROOT)/tk_utils/postscript.h
edExtend.o: $(SRCROOT)/tk_utils/sheet.h
edExtend.o: $(SRCROOT)/tk_utils/tkSheet.h
edExtend.o: $(SRCROOT)/tk_utils/tkSheet_common.h
edExtend.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
edExtend.o: $(SRCROOT)/tk_utils/tkTrace.h
edInterface.o: $(PWD)/staden_config.h
edInterface.o: $(SRCROOT)/Misc/array.h
edInterface.o: $(SRCROOT)/Misc/bitmap.h
edInterface.o: $(SRCROOT)/Misc/dstring.h
edInterface.o: $(SRCROOT)/Misc/misc.h
edInterface.o: $(SRCROOT)/Misc/os.h
edInterface.o: $(SRCROOT)/Misc/xalloc.h
edInterface.o: $(SRCROOT)/Misc/xerror.h
edInterface.o: $(SRCROOT)/g/freetree.h
edInterface.o: $(SRCROOT)/g/g-defs.h
edInterface.o: $(SRCROOT)/g/g-error.h
edInterface.o: $(SRCROOT)/g/g-filedefs.h
edInterface.o: $(SRCROOT)/g/g-os.h
edInterface.o: $(SRCROOT)/g/g-struct.h
edInterface.o: $(SRCROOT)/gap4/IO1.h
edInterface.o: $(SRCROOT)/gap4/active_tags.h
edInterface.o: $(SRCROOT)/gap4/contigEditor.h
edInterface.o: $(SRCROOT)/gap4/edStructs.h
edInterface.o: $(SRCROOT)/gap4/edUtils.h
edInterface.o: $(SRCROOT)/gap4/extend.h
edInterface.o: $(SRCROOT)/gap4/fort.h
edInterface.o: $(SRCROOT)/gap4/fortran.h
edInterface.o: $(SRCROOT)/gap4/gap-dbstruct.h
edInterface.o: $(SRCROOT)/gap4/gap-if.h
edInterface.o: $(SRCROOT)/gap4/gap_globals.h
edInterface.o: $(SRCROOT)/gap4/hash.h
edInterface.o: $(SRCROOT)/gap4/io-reg.h
edInterface.o: $(SRCROOT)/gap4/io_handle.h
edInterface.o: $(SRCROOT)/gap4/io_utils.h
edInterface.o: $(SRCROOT)/gap4/list.h
edInterface.o: $(SRCROOT)/gap4/notes.h
edInterface.o: $(SRCROOT)/gap4/primlib.h
edInterface.o: $(SRCROOT)/gap4/qual.h
edInterface.o: $(SRCROOT)/gap4/qualIO.h
edInterface.o: $(SRCROOT)/gap4/ruler_display.h
edInterface.o: $(SRCROOT)/gap4/tagDefs.h
edInterface.o: $(SRCROOT)/gap4/tagUtils.h
edInterface.o: $(SRCROOT)/gap4/tagdb.h
edInterface.o: $(SRCROOT)/gap4/template.h
edInterface.o: $(SRCROOT)/gap4/template_display.h
edInterface.o: $(SRCROOT)/gap4/tkEdNames.h
edInterface.o: $(SRCROOT)/gap4/tkEditor.h
edInterface.o: $(SRCROOT)/gap4/tman_display.h
edInterface.o: $(SRCROOT)/gap4/tman_interface.h
edInterface.o: $(SRCROOT)/gap4/undo.h
edInterface.o: $(SRCROOT)/primer3/src/dpal.h
edInterface.o: $(SRCROOT)/primer3/src/primer3.h
edInterface.o: $(SRCROOT)/tk_utils/canvas_box.h
edInterface.o: $(SRCROOT)/tk_utils/cli_arg.h
edInterface.o: $(SRCROOT)/tk_utils/intrinsic_type.h
edInterface.o: $(SRCROOT)/tk_utils/postscript.h
edInterface.o: $(SRCROOT)/tk_utils/sheet.h
edInterface.o: $(SRCROOT)/tk_utils/tcl_utils.h
edInterface.o: $(SRCROOT)/tk_utils/tkSheet.h
edInterface.o: $(SRCROOT)/tk_utils/tkSheet_common.h
edInterface.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
edInterface.o: $(SRCROOT)/tk_utils/tkTrace.h
edMutations.o: $(PWD)/staden_config.h
edMutations.o: $(SRCROOT)/Misc/array.h
edMutations.o: $(SRCROOT)/Misc/bitmap.h
edMutations.o: $(SRCROOT)/Misc/dstring.h
edMutations.o: $(SRCROOT)/Misc/misc.h
edMutations.o: $(SRCROOT)/Misc/os.h
edMutations.o: $(SRCROOT)/Misc/xalloc.h
edMutations.o: $(SRCROOT)/Misc/xerror.h
edMutations.o: $(SRCROOT)/g/freetree.h
edMutations.o: $(SRCROOT)/g/g-defs.h
edMutations.o: $(SRCROOT)/g/g-error.h
edMutations.o: $(SRCROOT)/g/g-filedefs.h
edMutations.o: $(SRCROOT)/g/g-os.h
edMutations.o: $(SRCROOT)/g/g-struct.h
edMutations.o: $(SRCROOT)/gap4/IO1.h
edMutations.o: $(SRCROOT)/gap4/edStructs.h
edMutations.o: $(SRCROOT)/gap4/edUtils.h
edMutations.o: $(SRCROOT)/gap4/fort.h
edMutations.o: $(SRCROOT)/gap4/fortran.h
edMutations.o: $(SRCROOT)/gap4/gap-dbstruct.h
edMutations.o: $(SRCROOT)/gap4/gap-if.h
edMutations.o: $(SRCROOT)/gap4/io-reg.h
edMutations.o: $(SRCROOT)/gap4/io_handle.h
edMutations.o: $(SRCROOT)/gap4/io_utils.h
edMutations.o: $(SRCROOT)/gap4/list.h
edMutations.o: $(SRCROOT)/gap4/parse_ft.h
edMutations.o: $(SRCROOT)/gap4/primlib.h
edMutations.o: $(SRCROOT)/gap4/qual.h
edMutations.o: $(SRCROOT)/gap4/tagDefs.h
edMutations.o: $(SRCROOT)/gap4/tagUtils.h
edMutations.o: $(SRCROOT)/gap4/template.h
edMutations.o: $(SRCROOT)/gap4/tkEdNames.h
edMutations.o: $(SRCROOT)/gap4/tkEditor.h
edMutations.o: $(SRCROOT)/gap4/tman_display.h
edMutations.o: $(SRCROOT)/gap4/tman_interface.h
edMutations.o: $(SRCROOT)/gap4/undo.h
edMutations.o: $(SRCROOT)/primer3/src/dpal.h
edMutations.o: $(SRCROOT)/primer3/src/primer3.h
edMutations.o: $(SRCROOT)/seq_utils/dna_utils.h
edMutations.o: $(SRCROOT)/seq_utils/genetic_code.h
edMutations.o: $(SRCROOT)/tk_utils/cli_arg.h
edMutations.o: $(SRCROOT)/tk_utils/intrinsic_type.h
edMutations.o: $(SRCROOT)/tk_utils/postscript.h
edMutations.o: $(SRCROOT)/tk_utils/sheet.h
edMutations.o: $(SRCROOT)/tk_utils/tkSheet.h
edMutations.o: $(SRCROOT)/tk_utils/tkSheet_common.h
edMutations.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
edMutations.o: $(SRCROOT)/tk_utils/tkTrace.h
edUtils2.o: $(PWD)/staden_config.h
edUtils2.o: $(SRCROOT)/Misc/array.h
edUtils2.o: $(SRCROOT)/Misc/bitmap.h
edUtils2.o: $(SRCROOT)/Misc/dstring.h
edUtils2.o: $(SRCROOT)/Misc/locks.h
edUtils2.o: $(SRCROOT)/Misc/misc.h
edUtils2.o: $(SRCROOT)/Misc/os.h
edUtils2.o: $(SRCROOT)/Misc/xalloc.h
edUtils2.o: $(SRCROOT)/Misc/xerror.h
edUtils2.o: $(SRCROOT)/g/freetree.h
edUtils2.o: $(SRCROOT)/g/g-defs.h
edUtils2.o: $(SRCROOT)/g/g-error.h
edUtils2.o: $(SRCROOT)/g/g-filedefs.h
edUtils2.o: $(SRCROOT)/g/g-os.h
edUtils2.o: $(SRCROOT)/g/g-struct.h
edUtils2.o: $(SRCROOT)/gap4/IO1.h
edUtils2.o: $(SRCROOT)/gap4/IO2.h
edUtils2.o: $(SRCROOT)/gap4/active_tags.h
edUtils2.o: $(SRCROOT)/gap4/contigEditor.h
edUtils2.o: $(SRCROOT)/gap4/edStructs.h
edUtils2.o: $(SRCROOT)/gap4/edUtils.h
edUtils2.o: $(SRCROOT)/gap4/extend.h
edUtils2.o: $(SRCROOT)/gap4/fort.h
edUtils2.o: $(SRCROOT)/gap4/fortran.h
edUtils2.o: $(SRCROOT)/gap4/gap-dbstruct.h
edUtils2.o: $(SRCROOT)/gap4/gap-if.h
edUtils2.o: $(SRCROOT)/gap4/gap_globals.h
edUtils2.o: $(SRCROOT)/gap4/io-reg.h
edUtils2.o: $(SRCROOT)/gap4/io_handle.h
edUtils2.o: $(SRCROOT)/gap4/io_utils.h
edUtils2.o: $(SRCROOT)/gap4/list.h
edUtils2.o: $(SRCROOT)/gap4/notes.h
edUtils2.o: $(SRCROOT)/gap4/primlib.h
edUtils2.o: $(SRCROOT)/gap4/qual.h
edUtils2.o: $(SRCROOT)/gap4/select.h
edUtils2.o: $(SRCROOT)/gap4/tagDefs.h
edUtils2.o: $(SRCROOT)/gap4/tagUtils.h
edUtils2.o: $(SRCROOT)/gap4/tagdb.h
edUtils2.o: $(SRCROOT)/gap4/template.h
edUtils2.o: $(SRCROOT)/gap4/tkEdNames.h
edUtils2.o: $(SRCROOT)/gap4/tkEditor.h
edUtils2.o: $(SRCROOT)/gap4/tman_display.h
edUtils2.o: $(SRCROOT)/gap4/tman_interface.h
edUtils2.o: $(SRCROOT)/gap4/undo.h
edUtils2.o: $(SRCROOT)/primer3/src/dpal.h
edUtils2.o: $(SRCROOT)/primer3/src/primer3.h
edUtils2.o: $(SRCROOT)/tk_utils/cli_arg.h
edUtils2.o: $(SRCROOT)/tk_utils/intrinsic_type.h
edUtils2.o: $(SRCROOT)/tk_utils/postscript.h
edUtils2.o: $(SRCROOT)/tk_utils/sheet.h
edUtils2.o: $(SRCROOT)/tk_utils/tcl_utils.h
edUtils2.o: $(SRCROOT)/tk_utils/tkSheet.h
edUtils2.o: $(SRCROOT)/tk_utils/tkSheet_common.h
edUtils2.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
edUtils2.o: $(SRCROOT)/tk_utils/tkTrace.h
extract.o: $(PWD)/staden_config.h
extract.o: $(SRCROOT)/Misc/FtoC.h
extract.o: $(SRCROOT)/Misc/array.h
extract.o: $(SRCROOT)/Misc/bitmap.h
extract.o: $(SRCROOT)/Misc/dstring.h
extract.o: $(SRCROOT)/Misc/misc.h
extract.o: $(SRCROOT)/Misc/os.h
extract.o: $(SRCROOT)/Misc/xalloc.h
extract.o: $(SRCROOT)/Misc/xerror.h
extract.o: $(SRCROOT)/g/freetree.h
extract.o: $(SRCROOT)/g/g-defs.h
extract.o: $(SRCROOT)/g/g-error.h
extract.o: $(SRCROOT)/g/g-filedefs.h
extract.o: $(SRCROOT)/g/g-os.h
extract.o: $(SRCROOT)/g/g-struct.h
extract.o: $(SRCROOT)/gap4/IO1.h
extract.o: $(SRCROOT)/gap4/edStructs.h
extract.o: $(SRCROOT)/gap4/edUtils.h
extract.o: $(SRCROOT)/gap4/extract.h
extract.o: $(SRCROOT)/gap4/fort.h
extract.o: $(SRCROOT)/gap4/fortran.h
extract.o: $(SRCROOT)/gap4/gap-dbstruct.h
extract.o: $(SRCROOT)/gap4/gap-if.h
extract.o: $(SRCROOT)/gap4/io-reg.h
extract.o: $(SRCROOT)/gap4/io_handle.h
extract.o: $(SRCROOT)/gap4/io_utils.h
extract.o: $(SRCROOT)/gap4/list.h
extract.o: $(SRCROOT)/gap4/notes.h
extract.o: $(SRCROOT)/gap4/primlib.h
extract.o: $(SRCROOT)/gap4/qual.h
extract.o: $(SRCROOT)/gap4/tagDefs.h
extract.o: $(SRCROOT)/gap4/tagUtils.h
extract.o: $(SRCROOT)/gap4/template.h
extract.o: $(SRCROOT)/gap4/tkEdNames.h
extract.o: $(SRCROOT)/gap4/tkEditor.h
extract.o: $(SRCROOT)/gap4/tman_display.h
extract.o: $(SRCROOT)/gap4/undo.h
extract.o: $(SRCROOT)/primer3/src/dpal.h
extract.o: $(SRCROOT)/primer3/src/primer3.h
extract.o: $(SRCROOT)/tk_utils/cli_arg.h
extract.o: $(SRCROOT)/tk_utils/intrinsic_type.h
extract.o: $(SRCROOT)/tk_utils/postscript.h
extract.o: $(SRCROOT)/tk_utils/sheet.h
extract.o: $(SRCROOT)/tk_utils/text_output.h
extract.o: $(SRCROOT)/tk_utils/tkSheet.h
extract.o: $(SRCROOT)/tk_utils/tkSheet_common.h
extract.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
extract.o: $(SRCROOT)/tk_utils/tkTrace.h
f2c.o: $(PWD)/staden_config.h
f2c.o: $(SRCROOT)/Misc/misc.h
f2c.o: $(SRCROOT)/Misc/os.h
f2c.o: $(SRCROOT)/Misc/xalloc.h
f2c.o: $(SRCROOT)/gap4/f2c.h
fij.o: $(PWD)/staden_config.h
fij.o: $(SRCROOT)/Misc/array.h
fij.o: $(SRCROOT)/Misc/bitmap.h
fij.o: $(SRCROOT)/Misc/dstring.h
fij.o: $(SRCROOT)/Misc/misc.h
fij.o: $(SRCROOT)/Misc/os.h
fij.o: $(SRCROOT)/Misc/xalloc.h
fij.o: $(SRCROOT)/Misc/xerror.h
fij.o: $(SRCROOT)/g/freetree.h
fij.o: $(SRCROOT)/g/g-defs.h
fij.o: $(SRCROOT)/g/g-error.h
fij.o: $(SRCROOT)/g/g-filedefs.h
fij.o: $(SRCROOT)/g/g-os.h
fij.o: $(SRCROOT)/g/g-struct.h
fij.o: $(SRCROOT)/gap4/IO1.h
fij.o: $(SRCROOT)/gap4/complement.h
fij.o: $(SRCROOT)/gap4/consen.h
fij.o: $(SRCROOT)/gap4/contigEditor.h
fij.o: $(SRCROOT)/gap4/contig_selector.h
fij.o: $(SRCROOT)/gap4/cs-object.h
fij.o: $(SRCROOT)/gap4/edStructs.h
fij.o: $(SRCROOT)/gap4/edUtils.h
fij.o: $(SRCROOT)/gap4/fij.h
fij.o: $(SRCROOT)/gap4/fort.h
fij.o: $(SRCROOT)/gap4/fortran.h
fij.o: $(SRCROOT)/gap4/gap-dbstruct.h
fij.o: $(SRCROOT)/gap4/gap-if.h
fij.o: $(SRCROOT)/gap4/gap_globals.h
fij.o: $(SRCROOT)/gap4/hash_lib.h
fij.o: $(SRCROOT)/gap4/io-reg.h
fij.o: $(SRCROOT)/gap4/io_handle.h
fij.o: $(SRCROOT)/gap4/io_utils.h
fij.o: $(SRCROOT)/gap4/list.h
fij.o: $(SRCROOT)/gap4/newgap_cmds.h
fij.o: $(SRCROOT)/gap4/primlib.h
fij.o: $(SRCROOT)/gap4/qual.h
fij.o: $(SRCROOT)/gap4/tagDefs.h
fij.o: $(SRCROOT)/gap4/tagUtils.h
fij.o: $(SRCROOT)/gap4/template.h
fij.o: $(SRCROOT)/gap4/tkEdNames.h
fij.o: $(SRCROOT)/gap4/tkEditor.h
fij.o: $(SRCROOT)/gap4/tman_display.h
fij.o: $(SRCROOT)/gap4/undo.h
fij.o: $(SRCROOT)/primer3/src/dpal.h
fij.o: $(SRCROOT)/primer3/src/primer3.h
fij.o: $(SRCROOT)/seq_utils/align_lib.h
fij.o: $(SRCROOT)/tk_utils/canvas_box.h
fij.o: $(SRCROOT)/tk_utils/cli_arg.h
fij.o: $(SRCROOT)/tk_utils/intrinsic_type.h
fij.o: $(SRCROOT)/tk_utils/postscript.h
fij.o: $(SRCROOT)/tk_utils/sheet.h
fij.o: $(SRCROOT)/tk_utils/tclXkeylist.h
fij.o: $(SRCROOT)/tk_utils/tcl_utils.h
fij.o: $(SRCROOT)/tk_utils/text_output.h
fij.o: $(SRCROOT)/tk_utils/tkSheet.h
fij.o: $(SRCROOT)/tk_utils/tkSheet_common.h
fij.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
fij.o: $(SRCROOT)/tk_utils/tkTrace.h
find_fragments.o: $(PWD)/staden_config.h
find_fragments.o: $(SRCROOT)/Misc/array.h
find_fragments.o: $(SRCROOT)/Misc/bitmap.h
find_fragments.o: $(SRCROOT)/Misc/misc.h
find_fragments.o: $(SRCROOT)/Misc/os.h
find_fragments.o: $(SRCROOT)/Misc/xalloc.h
find_fragments.o: $(SRCROOT)/Misc/xerror.h
find_fragments.o: $(SRCROOT)/g/freetree.h
find_fragments.o: $(SRCROOT)/g/g-defs.h
find_fragments.o: $(SRCROOT)/g/g-error.h
find_fragments.o: $(SRCROOT)/g/g-filedefs.h
find_fragments.o: $(SRCROOT)/g/g-os.h
find_fragments.o: $(SRCROOT)/g/g-struct.h
find_fragments.o: $(SRCROOT)/gap4/IO1.h
find_fragments.o: $(SRCROOT)/gap4/find_fragments.h
find_fragments.o: $(SRCROOT)/gap4/gap-dbstruct.h
find_fragments.o: $(SRCROOT)/gap4/gap-if.h
find_fragments.o: $(SRCROOT)/gap4/io_handle.h
find_fragments.o: $(SRCROOT)/gap4/io_utils.h
find_fragments.o: $(SRCROOT)/gap4/qual.h
find_oligo.o: $(PWD)/staden_config.h
find_oligo.o: $(SRCROOT)/Misc/array.h
find_oligo.o: $(SRCROOT)/Misc/bitmap.h
find_oligo.o: $(SRCROOT)/Misc/dstring.h
find_oligo.o: $(SRCROOT)/Misc/misc.h
find_oligo.o: $(SRCROOT)/Misc/os.h
find_oligo.o: $(SRCROOT)/Misc/xalloc.h
find_oligo.o: $(SRCROOT)/Misc/xerror.h
find_oligo.o: $(SRCROOT)/g/freetree.h
find_oligo.o: $(SRCROOT)/g/g-defs.h
find_oligo.o: $(SRCROOT)/g/g-error.h
find_oligo.o: $(SRCROOT)/g/g-filedefs.h
find_oligo.o: $(SRCROOT)/g/g-os.h
find_oligo.o: $(SRCROOT)/g/g-struct.h
find_oligo.o: $(SRCROOT)/gap4/IO1.h
find_oligo.o: $(SRCROOT)/gap4/complement.h
find_oligo.o: $(SRCROOT)/gap4/contigEditor.h
find_oligo.o: $(SRCROOT)/gap4/contig_selector.h
find_oligo.o: $(SRCROOT)/gap4/cs-object.h
find_oligo.o: $(SRCROOT)/gap4/edStructs.h
find_oligo.o: $(SRCROOT)/gap4/edUtils.h
find_oligo.o: $(SRCROOT)/gap4/fort.h
find_oligo.o: $(SRCROOT)/gap4/fortran.h
find_oligo.o: $(SRCROOT)/gap4/gap-dbstruct.h
find_oligo.o: $(SRCROOT)/gap4/gap-if.h
find_oligo.o: $(SRCROOT)/gap4/gap_globals.h
find_oligo.o: $(SRCROOT)/gap4/hash.h
find_oligo.o: $(SRCROOT)/gap4/io-reg.h
find_oligo.o: $(SRCROOT)/gap4/io_handle.h
find_oligo.o: $(SRCROOT)/gap4/io_utils.h
find_oligo.o: $(SRCROOT)/gap4/list.h
find_oligo.o: $(SRCROOT)/gap4/primlib.h
find_oligo.o: $(SRCROOT)/gap4/qual.h
find_oligo.o: $(SRCROOT)/gap4/ruler_display.h
find_oligo.o: $(SRCROOT)/gap4/tagDefs.h
find_oligo.o: $(SRCROOT)/gap4/tagUtils.h
find_oligo.o: $(SRCROOT)/gap4/tagdb.h
find_oligo.o: $(SRCROOT)/gap4/template.h
find_oligo.o: $(SRCROOT)/gap4/template_display.h
find_oligo.o: $(SRCROOT)/gap4/tkEdNames.h
find_oligo.o: $(SRCROOT)/gap4/tkEditor.h
find_oligo.o: $(SRCROOT)/gap4/tman_display.h
find_oligo.o: $(SRCROOT)/gap4/undo.h
find_oligo.o: $(SRCROOT)/primer3/src/dpal.h
find_oligo.o: $(SRCROOT)/primer3/src/primer3.h
find_oligo.o: $(SRCROOT)/seq_utils/dna_utils.h
find_oligo.o: $(SRCROOT)/seq_utils/search_utils.h
find_oligo.o: $(SRCROOT)/seq_utils/sequence_formats.h
find_oligo.o: $(SRCROOT)/tk_utils/canvas_box.h
find_oligo.o: $(SRCROOT)/tk_utils/cli_arg.h
find_oligo.o: $(SRCROOT)/tk_utils/intrinsic_type.h
find_oligo.o: $(SRCROOT)/tk_utils/postscript.h
find_oligo.o: $(SRCROOT)/tk_utils/sheet.h
find_oligo.o: $(SRCROOT)/tk_utils/tclXkeylist.h
find_oligo.o: $(SRCROOT)/tk_utils/tcl_utils.h
find_oligo.o: $(SRCROOT)/tk_utils/text_output.h
find_oligo.o: $(SRCROOT)/tk_utils/tkSheet.h
find_oligo.o: $(SRCROOT)/tk_utils/tkSheet_common.h
find_oligo.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
find_oligo.o: $(SRCROOT)/tk_utils/tkTrace.h
find_repeats.o: $(PWD)/staden_config.h
find_repeats.o: $(SRCROOT)/Misc/array.h
find_repeats.o: $(SRCROOT)/Misc/bitmap.h
find_repeats.o: $(SRCROOT)/Misc/dstring.h
find_repeats.o: $(SRCROOT)/Misc/misc.h
find_repeats.o: $(SRCROOT)/Misc/os.h
find_repeats.o: $(SRCROOT)/Misc/xalloc.h
find_repeats.o: $(SRCROOT)/Misc/xerror.h
find_repeats.o: $(SRCROOT)/g/freetree.h
find_repeats.o: $(SRCROOT)/g/g-defs.h
find_repeats.o: $(SRCROOT)/g/g-error.h
find_repeats.o: $(SRCROOT)/g/g-filedefs.h
find_repeats.o: $(SRCROOT)/g/g-os.h
find_repeats.o: $(SRCROOT)/g/g-struct.h
find_repeats.o: $(SRCROOT)/gap4/IO1.h
find_repeats.o: $(SRCROOT)/gap4/complement.h
find_repeats.o: $(SRCROOT)/gap4/consen.h
find_repeats.o: $(SRCROOT)/gap4/contigEditor.h
find_repeats.o: $(SRCROOT)/gap4/contig_selector.h
find_repeats.o: $(SRCROOT)/gap4/cs-object.h
find_repeats.o: $(SRCROOT)/gap4/edStructs.h
find_repeats.o: $(SRCROOT)/gap4/edUtils.h
find_repeats.o: $(SRCROOT)/gap4/find_repeats.h
find_repeats.o: $(SRCROOT)/gap4/fort.h
find_repeats.o: $(SRCROOT)/gap4/fortran.h
find_repeats.o: $(SRCROOT)/gap4/gap-dbstruct.h
find_repeats.o: $(SRCROOT)/gap4/gap-if.h
find_repeats.o: $(SRCROOT)/gap4/gap_globals.h
find_repeats.o: $(SRCROOT)/gap4/gap_hash.h
find_repeats.o: $(SRCROOT)/gap4/io-reg.h
find_repeats.o: $(SRCROOT)/gap4/io_handle.h
find_repeats.o: $(SRCROOT)/gap4/io_utils.h
find_repeats.o: $(SRCROOT)/gap4/list.h
find_repeats.o: $(SRCROOT)/gap4/primlib.h
find_repeats.o: $(SRCROOT)/gap4/qual.h
find_repeats.o: $(SRCROOT)/gap4/tagDefs.h
find_repeats.o: $(SRCROOT)/gap4/tagUtils.h
find_repeats.o: $(SRCROOT)/gap4/template.h
find_repeats.o: $(SRCROOT)/gap4/tkEdNames.h
find_repeats.o: $(SRCROOT)/gap4/tkEditor.h
find_repeats.o: $(SRCROOT)/gap4/tman_display.h
find_repeats.o: $(SRCROOT)/gap4/undo.h
find_repeats.o: $(SRCROOT)/primer3/src/dpal.h
find_repeats.o: $(SRCROOT)/primer3/src/primer3.h
find_repeats.o: $(SRCROOT)/tk_utils/canvas_box.h
find_repeats.o: $(SRCROOT)/tk_utils/cli_arg.h
find_repeats.o: $(SRCROOT)/tk_utils/intrinsic_type.h
find_repeats.o: $(SRCROOT)/tk_utils/postscript.h
find_repeats.o: $(SRCROOT)/tk_utils/sheet.h
find_repeats.o: $(SRCROOT)/tk_utils/tclXkeylist.h
find_repeats.o: $(SRCROOT)/tk_utils/tcl_utils.h
find_repeats.o: $(SRCROOT)/tk_utils/text_output.h
find_repeats.o: $(SRCROOT)/tk_utils/tkSheet.h
find_repeats.o: $(SRCROOT)/tk_utils/tkSheet_common.h
find_repeats.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
find_repeats.o: $(SRCROOT)/tk_utils/tkTrace.h
gap-create.o: $(PWD)/staden_config.h
gap-create.o: $(SRCROOT)/Misc/FtoC.h
gap-create.o: $(SRCROOT)/Misc/array.h
gap-create.o: $(SRCROOT)/Misc/bitmap.h
gap-create.o: $(SRCROOT)/Misc/misc.h
gap-create.o: $(SRCROOT)/Misc/os.h
gap-create.o: $(SRCROOT)/Misc/xalloc.h
gap-create.o: $(SRCROOT)/Misc/xerror.h
gap-create.o: $(SRCROOT)/g/freetree.h
gap-create.o: $(SRCROOT)/g/g-defs.h
gap-create.o: $(SRCROOT)/g/g-error.h
gap-create.o: $(SRCROOT)/g/g-filedefs.h
gap-create.o: $(SRCROOT)/g/g-io.h
gap-create.o: $(SRCROOT)/g/g-misc.h
gap-create.o: $(SRCROOT)/g/g-os.h
gap-create.o: $(SRCROOT)/g/g-struct.h
gap-create.o: $(SRCROOT)/gap4/gap-create.h
gap-create.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap-create.o: $(SRCROOT)/gap4/gap-defaults.h
gap-create.o: $(SRCROOT)/gap4/gap-error.h
gap-create.o: $(SRCROOT)/gap4/gap-if.h
gap-create.o: $(SRCROOT)/gap4/gap-init.h
gap-create.o: $(SRCROOT)/gap4/gap-io.h
gap-dbstruct.o: $(PWD)/staden_config.h
gap-dbstruct.o: $(SRCROOT)/Misc/os.h
gap-dbstruct.o: $(SRCROOT)/Misc/xerror.h
gap-dbstruct.o: $(SRCROOT)/g/g-error.h
gap-dbstruct.o: $(SRCROOT)/g/g-os.h
gap-dbstruct.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap-error.o: $(PWD)/staden_config.h
gap-error.o: $(SRCROOT)/Misc/array.h
gap-error.o: $(SRCROOT)/Misc/bitmap.h
gap-error.o: $(SRCROOT)/Misc/misc.h
gap-error.o: $(SRCROOT)/Misc/os.h
gap-error.o: $(SRCROOT)/Misc/xalloc.h
gap-error.o: $(SRCROOT)/Misc/xerror.h
gap-error.o: $(SRCROOT)/g/g-error.h
gap-error.o: $(SRCROOT)/gap4/gap-error.h
gap-error.o: $(SRCROOT)/gap4/stack_dump.h
gap-if.o: $(PWD)/staden_config.h
gap-if.o: $(SRCROOT)/Misc/array.h
gap-if.o: $(SRCROOT)/Misc/os.h
gap-if.o: $(SRCROOT)/Misc/xerror.h
gap-if.o: $(SRCROOT)/g/freetree.h
gap-if.o: $(SRCROOT)/g/g-error.h
gap-if.o: $(SRCROOT)/g/g-filedefs.h
gap-if.o: $(SRCROOT)/g/g-os.h
gap-if.o: $(SRCROOT)/g/g-struct.h
gap-if.o: $(SRCROOT)/gap4/gap-if.h
gap-if.o: $(SRCROOT)/gap4/gap-init.h
gap-if.o: $(SRCROOT)/gap4/gap-local.h
gap-if.o: $(SRCROOT)/gap4/gap-remote.h
gap-init.o: $(PWD)/staden_config.h
gap-init.o: $(SRCROOT)/Misc/array.h
gap-init.o: $(SRCROOT)/Misc/os.h
gap-init.o: $(SRCROOT)/Misc/xerror.h
gap-init.o: $(SRCROOT)/g/freetree.h
gap-init.o: $(SRCROOT)/g/g-error.h
gap-init.o: $(SRCROOT)/g/g-filedefs.h
gap-init.o: $(SRCROOT)/g/g-os.h
gap-init.o: $(SRCROOT)/g/g-struct.h
gap-init.o: $(SRCROOT)/gap4/gap-if.h
gap-init.o: $(SRCROOT)/gap4/gap-init.h
gap-init.o: $(SRCROOT)/gap4/gap-io.h
gap-io.o: $(PWD)/staden_config.h
gap-io.o: $(SRCROOT)/Misc/array.h
gap-io.o: $(SRCROOT)/Misc/misc.h
gap-io.o: $(SRCROOT)/Misc/os.h
gap-io.o: $(SRCROOT)/Misc/xalloc.h
gap-io.o: $(SRCROOT)/Misc/xerror.h
gap-io.o: $(SRCROOT)/g/freetree.h
gap-io.o: $(SRCROOT)/g/g-error.h
gap-io.o: $(SRCROOT)/g/g-filedefs.h
gap-io.o: $(SRCROOT)/g/g-os.h
gap-io.o: $(SRCROOT)/g/g-struct.h
gap-io.o: $(SRCROOT)/gap4/gap-error.h
gap-io.o: $(SRCROOT)/gap4/gap-if.h
gap-local.o: $(PWD)/staden_config.h
gap-local.o: $(SRCROOT)/Misc/array.h
gap-local.o: $(SRCROOT)/Misc/os.h
gap-local.o: $(SRCROOT)/Misc/xalloc.h
gap-local.o: $(SRCROOT)/Misc/xerror.h
gap-local.o: $(SRCROOT)/g/freetree.h
gap-local.o: $(SRCROOT)/g/g-connect.h
gap-local.o: $(SRCROOT)/g/g-db.h
gap-local.o: $(SRCROOT)/g/g-error.h
gap-local.o: $(SRCROOT)/g/g-filedefs.h
gap-local.o: $(SRCROOT)/g/g-os.h
gap-local.o: $(SRCROOT)/g/g-request.h
gap-local.o: $(SRCROOT)/g/g-struct.h
gap-local.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap-local.o: $(SRCROOT)/gap4/gap-if.h
gap-local.o: $(SRCROOT)/gap4/gap-local.h
gap-remote.o: $(PWD)/staden_config.h
gap-remote.o: $(SRCROOT)/Misc/array.h
gap-remote.o: $(SRCROOT)/Misc/os.h
gap-remote.o: $(SRCROOT)/Misc/xerror.h
gap-remote.o: $(SRCROOT)/g/freetree.h
gap-remote.o: $(SRCROOT)/g/g-connect.h
gap-remote.o: $(SRCROOT)/g/g-db.h
gap-remote.o: $(SRCROOT)/g/g-error.h
gap-remote.o: $(SRCROOT)/g/g-filedefs.h
gap-remote.o: $(SRCROOT)/g/g-os.h
gap-remote.o: $(SRCROOT)/g/g-request.h
gap-remote.o: $(SRCROOT)/g/g-struct.h
gap-remote.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap-remote.o: $(SRCROOT)/gap4/gap-if.h
gap-remote.o: $(SRCROOT)/gap4/gap-remote.h
gap-tcl.o: $(PWD)/staden_config.h
gap-tcl.o: $(SRCROOT)/Misc/array.h
gap-tcl.o: $(SRCROOT)/Misc/bitmap.h
gap-tcl.o: $(SRCROOT)/Misc/dstring.h
gap-tcl.o: $(SRCROOT)/Misc/misc.h
gap-tcl.o: $(SRCROOT)/Misc/os.h
gap-tcl.o: $(SRCROOT)/Misc/xalloc.h
gap-tcl.o: $(SRCROOT)/Misc/xerror.h
gap-tcl.o: $(SRCROOT)/g/freetree.h
gap-tcl.o: $(SRCROOT)/g/g-defs.h
gap-tcl.o: $(SRCROOT)/g/g-error.h
gap-tcl.o: $(SRCROOT)/g/g-filedefs.h
gap-tcl.o: $(SRCROOT)/g/g-os.h
gap-tcl.o: $(SRCROOT)/g/g-struct.h
gap-tcl.o: $(SRCROOT)/gap4/IO1.h
gap-tcl.o: $(SRCROOT)/gap4/clones.h
gap-tcl.o: $(SRCROOT)/gap4/edStructs.h
gap-tcl.o: $(SRCROOT)/gap4/edUtils.h
gap-tcl.o: $(SRCROOT)/gap4/fort.h
gap-tcl.o: $(SRCROOT)/gap4/fortran.h
gap-tcl.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap-tcl.o: $(SRCROOT)/gap4/gap-error.h
gap-tcl.o: $(SRCROOT)/gap4/gap-if.h
gap-tcl.o: $(SRCROOT)/gap4/gap-tcl.h
gap-tcl.o: $(SRCROOT)/gap4/gap_globals.h
gap-tcl.o: $(SRCROOT)/gap4/io-reg.h
gap-tcl.o: $(SRCROOT)/gap4/io_handle.h
gap-tcl.o: $(SRCROOT)/gap4/io_utils.h
gap-tcl.o: $(SRCROOT)/gap4/list.h
gap-tcl.o: $(SRCROOT)/gap4/primlib.h
gap-tcl.o: $(SRCROOT)/gap4/qual.h
gap-tcl.o: $(SRCROOT)/gap4/seqInfo.h
gap-tcl.o: $(SRCROOT)/gap4/tagDefs.h
gap-tcl.o: $(SRCROOT)/gap4/tagUtils.h
gap-tcl.o: $(SRCROOT)/gap4/template.h
gap-tcl.o: $(SRCROOT)/gap4/tkEdNames.h
gap-tcl.o: $(SRCROOT)/gap4/tkEditor.h
gap-tcl.o: $(SRCROOT)/gap4/tman_display.h
gap-tcl.o: $(SRCROOT)/gap4/undo.h
gap-tcl.o: $(SRCROOT)/primer3/src/dpal.h
gap-tcl.o: $(SRCROOT)/primer3/src/primer3.h
gap-tcl.o: $(SRCROOT)/tk_utils/cli_arg.h
gap-tcl.o: $(SRCROOT)/tk_utils/intrinsic_type.h
gap-tcl.o: $(SRCROOT)/tk_utils/postscript.h
gap-tcl.o: $(SRCROOT)/tk_utils/sheet.h
gap-tcl.o: $(SRCROOT)/tk_utils/tclXkeylist.h
gap-tcl.o: $(SRCROOT)/tk_utils/tcl_utils.h
gap-tcl.o: $(SRCROOT)/tk_utils/tkSheet.h
gap-tcl.o: $(SRCROOT)/tk_utils/tkSheet_common.h
gap-tcl.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
gap-tcl.o: $(SRCROOT)/tk_utils/tkTrace.h
gap_array.o: $(PWD)/staden_config.h
gap_array.o: $(SRCROOT)/Misc/misc.h
gap_array.o: $(SRCROOT)/Misc/os.h
gap_array.o: $(SRCROOT)/Misc/xalloc.h
gap_array.o: $(SRCROOT)/gap4/active_tags.h
gap_array.o: $(SRCROOT)/gap4/gap_array.h
gap_array.o: $(SRCROOT)/gap4/tagdb.h
gap_array.o: $(SRCROOT)/tk_utils/intrinsic_type.h
gap_array.o: $(SRCROOT)/tk_utils/tcl_utils.h
gap_canvas_box.o: $(PWD)/staden_config.h
gap_canvas_box.o: $(SRCROOT)/Misc/array.h
gap_canvas_box.o: $(SRCROOT)/Misc/bitmap.h
gap_canvas_box.o: $(SRCROOT)/Misc/misc.h
gap_canvas_box.o: $(SRCROOT)/Misc/os.h
gap_canvas_box.o: $(SRCROOT)/Misc/xalloc.h
gap_canvas_box.o: $(SRCROOT)/Misc/xerror.h
gap_canvas_box.o: $(SRCROOT)/g/freetree.h
gap_canvas_box.o: $(SRCROOT)/g/g-defs.h
gap_canvas_box.o: $(SRCROOT)/g/g-error.h
gap_canvas_box.o: $(SRCROOT)/g/g-filedefs.h
gap_canvas_box.o: $(SRCROOT)/g/g-os.h
gap_canvas_box.o: $(SRCROOT)/g/g-struct.h
gap_canvas_box.o: $(SRCROOT)/gap4/IO1.h
gap_canvas_box.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap_canvas_box.o: $(SRCROOT)/gap4/gap-if.h
gap_canvas_box.o: $(SRCROOT)/gap4/gap_globals.h
gap_canvas_box.o: $(SRCROOT)/gap4/io-reg.h
gap_canvas_box.o: $(SRCROOT)/gap4/io_handle.h
gap_canvas_box.o: $(SRCROOT)/gap4/io_utils.h
gap_canvas_box.o: $(SRCROOT)/tk_utils/canvas_box.h
gap_canvas_box.o: $(SRCROOT)/tk_utils/tcl_utils.h
gap_cli_arg.o: $(PWD)/staden_config.h
gap_cli_arg.o: $(SRCROOT)/Misc/array.h
gap_cli_arg.o: $(SRCROOT)/Misc/bitmap.h
gap_cli_arg.o: $(SRCROOT)/Misc/misc.h
gap_cli_arg.o: $(SRCROOT)/Misc/os.h
gap_cli_arg.o: $(SRCROOT)/Misc/xalloc.h
gap_cli_arg.o: $(SRCROOT)/Misc/xerror.h
gap_cli_arg.o: $(SRCROOT)/g/freetree.h
gap_cli_arg.o: $(SRCROOT)/g/g-defs.h
gap_cli_arg.o: $(SRCROOT)/g/g-error.h
gap_cli_arg.o: $(SRCROOT)/g/g-filedefs.h
gap_cli_arg.o: $(SRCROOT)/g/g-os.h
gap_cli_arg.o: $(SRCROOT)/g/g-struct.h
gap_cli_arg.o: $(SRCROOT)/gap4/IO1.h
gap_cli_arg.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap_cli_arg.o: $(SRCROOT)/gap4/gap-if.h
gap_cli_arg.o: $(SRCROOT)/gap4/gap_cli_arg.h
gap_cli_arg.o: $(SRCROOT)/gap4/io_handle.h
gap_cli_arg.o: $(SRCROOT)/gap4/io_utils.h
gap_cli_arg.o: $(SRCROOT)/tk_utils/cli_arg.h
gap_globals.o: $(PWD)/staden_config.h
gap_globals.o: $(SRCROOT)/Misc/array.h
gap_globals.o: $(SRCROOT)/Misc/bitmap.h
gap_globals.o: $(SRCROOT)/Misc/misc.h
gap_globals.o: $(SRCROOT)/Misc/os.h
gap_globals.o: $(SRCROOT)/Misc/xalloc.h
gap_globals.o: $(SRCROOT)/Misc/xerror.h
gap_globals.o: $(SRCROOT)/g/freetree.h
gap_globals.o: $(SRCROOT)/g/g-defs.h
gap_globals.o: $(SRCROOT)/g/g-error.h
gap_globals.o: $(SRCROOT)/g/g-filedefs.h
gap_globals.o: $(SRCROOT)/g/g-os.h
gap_globals.o: $(SRCROOT)/g/g-struct.h
gap_globals.o: $(SRCROOT)/gap4/IO1.h
gap_globals.o: $(SRCROOT)/gap4/consen.h
gap_globals.o: $(SRCROOT)/gap4/fort.h
gap_globals.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap_globals.o: $(SRCROOT)/gap4/gap-if.h
gap_globals.o: $(SRCROOT)/gap4/gap_globals.h
gap_globals.o: $(SRCROOT)/gap4/hash_lib.h
gap_globals.o: $(SRCROOT)/gap4/io_handle.h
gap_globals.o: $(SRCROOT)/gap4/io_utils.h
gap_globals.o: $(SRCROOT)/gap4/notedb.h
gap_globals.o: $(SRCROOT)/seq_utils/align.h
gap_globals.o: $(SRCROOT)/seq_utils/align_lib.h
gap_globals.o: $(SRCROOT)/seq_utils/align_lib_old.h
gap_globals.o: $(SRCROOT)/seq_utils/dna_utils.h
gap_globals.o: $(SRCROOT)/seq_utils/genetic_code.h
gap_globals.o: $(SRCROOT)/seq_utils/read_matrix.h
gap_globals.o: $(SRCROOT)/tk_utils/intrinsic_type.h
gap_globals.o: $(SRCROOT)/tk_utils/tclXkeylist.h
gap_globals.o: $(SRCROOT)/tk_utils/tcl_utils.h
gap_hash.o: $(PWD)/staden_config.h
gap_hash.o: $(SRCROOT)/Misc/array.h
gap_hash.o: $(SRCROOT)/Misc/bitmap.h
gap_hash.o: $(SRCROOT)/Misc/misc.h
gap_hash.o: $(SRCROOT)/Misc/os.h
gap_hash.o: $(SRCROOT)/Misc/xalloc.h
gap_hash.o: $(SRCROOT)/Misc/xerror.h
gap_hash.o: $(SRCROOT)/g/freetree.h
gap_hash.o: $(SRCROOT)/g/g-defs.h
gap_hash.o: $(SRCROOT)/g/g-error.h
gap_hash.o: $(SRCROOT)/g/g-filedefs.h
gap_hash.o: $(SRCROOT)/g/g-os.h
gap_hash.o: $(SRCROOT)/g/g-struct.h
gap_hash.o: $(SRCROOT)/gap4/IO1.h
gap_hash.o: $(SRCROOT)/gap4/fort.h
gap_hash.o: $(SRCROOT)/gap4/gap-dbstruct.h
gap_hash.o: $(SRCROOT)/gap4/gap-if.h
gap_hash.o: $(SRCROOT)/gap4/gap_hash.h
gap_hash.o: $(SRCROOT)/gap4/hash_lib.h
gap_hash.o: $(SRCROOT)/gap4/io_handle.h
gap_hash.o: $(SRCROOT)/gap4/io_utils.h
gap_hash.o: $(SRCROOT)/seq_utils/align_lib.h
gap_hash.o: $(SRCROOT)/seq_utils/dna_utils.h
hash.o: $(SRCROOT)/Misc/xalloc.h
hash.o: $(SRCROOT)/gap4/hash.h
hash_lib.o: $(PWD)/staden_config.h
hash_lib.o: $(SRCROOT)/Misc/misc.h
hash_lib.o: $(SRCROOT)/Misc/os.h
hash_lib.o: $(SRCROOT)/Misc/xalloc.h
hash_lib.o: $(SRCROOT)/gap4/hash_lib.h
hash_lib.o: $(SRCROOT)/seq_utils/align_lib.h
hash_lib.o: $(SRCROOT)/seq_utils/dna_utils.h
init.o: $(PWD)/staden_config.h
init.o: $(SRCROOT)/Misc/array.h
init.o: $(SRCROOT)/Misc/bitmap.h
init.o: $(SRCROOT)/Misc/dstring.h
init.o: $(SRCROOT)/Misc/misc.h
init.o: $(SRCROOT)/Misc/os.h
init.o: $(SRCROOT)/Misc/xalloc.h
init.o: $(SRCROOT)/Misc/xerror.h
init.o: $(SRCROOT)/g/freetree.h
init.o: $(SRCROOT)/g/g-defs.h
init.o: $(SRCROOT)/g/g-error.h
init.o: $(SRCROOT)/g/g-filedefs.h
init.o: $(SRCROOT)/g/g-os.h
init.o: $(SRCROOT)/g/g-struct.h
init.o: $(SRCROOT)/gap4/IO1.h
init.o: $(SRCROOT)/gap4/active_tags.h
init.o: $(SRCROOT)/gap4/contigEditor.h
init.o: $(SRCROOT)/gap4/edStructs.h
init.o: $(SRCROOT)/gap4/edUtils.h
init.o: $(SRCROOT)/gap4/fort.h
init.o: $(SRCROOT)/gap4/fortran.h
init.o: $(SRCROOT)/gap4/gap-dbstruct.h
init.o: $(SRCROOT)/gap4/gap-if.h
init.o: $(SRCROOT)/gap4/gap-tcl.h
init.o: $(SRCROOT)/gap4/gap_globals.h
init.o: $(SRCROOT)/gap4/io-reg.h
init.o: $(SRCROOT)/gap4/io_handle.h
init.o: $(SRCROOT)/gap4/io_utils.h
init.o: $(SRCROOT)/gap4/list.h
init.o: $(SRCROOT)/gap4/newgap_cmds.h
init.o: $(SRCROOT)/gap4/primlib.h
init.o: $(SRCROOT)/gap4/qual.h
init.o: $(SRCROOT)/gap4/tagDefs.h
init.o: $(SRCROOT)/gap4/tagUtils.h
init.o: $(SRCROOT)/gap4/tagdb.h
init.o: $(SRCROOT)/gap4/template.h
init.o: $(SRCROOT)/gap4/tkEdNames.h
init.o: $(SRCROOT)/gap4/tkEditor.h
init.o: $(SRCROOT)/gap4/tman_display.h
init.o: $(SRCROOT)/gap4/undo.h
init.o: $(SRCROOT)/primer3/src/dpal.h
init.o: $(SRCROOT)/primer3/src/primer3.h
init.o: $(SRCROOT)/tk_utils/cli_arg.h
init.o: $(SRCROOT)/tk_utils/intrinsic_type.h
init.o: $(SRCROOT)/tk_utils/postscript.h
init.o: $(SRCROOT)/tk_utils/sheet.h
init.o: $(SRCROOT)/tk_utils/tcl_utils.h
init.o: $(SRCROOT)/tk_utils/tkSheet.h
init.o: $(SRCROOT)/tk_utils/tkSheet_common.h
init.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
init.o: $(SRCROOT)/tk_utils/tkTrace.h
io-reg.o: $(PWD)/staden_config.h
io-reg.o: $(SRCROOT)/Misc/array.h
io-reg.o: $(SRCROOT)/Misc/bitmap.h
io-reg.o: $(SRCROOT)/Misc/misc.h
io-reg.o: $(SRCROOT)/Misc/os.h
io-reg.o: $(SRCROOT)/Misc/xalloc.h
io-reg.o: $(SRCROOT)/Misc/xerror.h
io-reg.o: $(SRCROOT)/g/freetree.h
io-reg.o: $(SRCROOT)/g/g-defs.h
io-reg.o: $(SRCROOT)/g/g-error.h
io-reg.o: $(SRCROOT)/g/g-filedefs.h
io-reg.o: $(SRCROOT)/g/g-os.h
io-reg.o: $(SRCROOT)/g/g-struct.h
io-reg.o: $(SRCROOT)/gap4/IO1.h
io-reg.o: $(SRCROOT)/gap4/gap-dbstruct.h
io-reg.o: $(SRCROOT)/gap4/gap-if.h
io-reg.o: $(SRCROOT)/gap4/io-reg.h
io-reg.o: $(SRCROOT)/gap4/io_handle.h
io-reg.o: $(SRCROOT)/gap4/io_utils.h
io-reg.o: $(SRCROOT)/gap4/tk-io-reg.h
io-reg.o: $(SRCROOT)/tk_utils/text_output.h
io_handle.o: $(PWD)/staden_config.h
io_handle.o: $(SRCROOT)/Misc/array.h
io_handle.o: $(SRCROOT)/Misc/bitmap.h
io_handle.o: $(SRCROOT)/Misc/dstring.h
io_handle.o: $(SRCROOT)/Misc/misc.h
io_handle.o: $(SRCROOT)/Misc/os.h
io_handle.o: $(SRCROOT)/Misc/xalloc.h
io_handle.o: $(SRCROOT)/Misc/xerror.h
io_handle.o: $(SRCROOT)/g/freetree.h
io_handle.o: $(SRCROOT)/g/g-defs.h
io_handle.o: $(SRCROOT)/g/g-error.h
io_handle.o: $(SRCROOT)/g/g-filedefs.h
io_handle.o: $(SRCROOT)/g/g-os.h
io_handle.o: $(SRCROOT)/g/g-struct.h
io_handle.o: $(SRCROOT)/gap4/IO1.h
io_handle.o: $(SRCROOT)/gap4/edStructs.h
io_handle.o: $(SRCROOT)/gap4/edUtils.h
io_handle.o: $(SRCROOT)/gap4/fort.h
io_handle.o: $(SRCROOT)/gap4/fortran.h
io_handle.o: $(SRCROOT)/gap4/gap-dbstruct.h
io_handle.o: $(SRCROOT)/gap4/gap-if.h
io_handle.o: $(SRCROOT)/gap4/io-reg.h
io_handle.o: $(SRCROOT)/gap4/io_handle.h
io_handle.o: $(SRCROOT)/gap4/io_utils.h
io_handle.o: $(SRCROOT)/gap4/list.h
io_handle.o: $(SRCROOT)/gap4/primlib.h
io_handle.o: $(SRCROOT)/gap4/qual.h
io_handle.o: $(SRCROOT)/gap4/tagDefs.h
io_handle.o: $(SRCROOT)/gap4/tagUtils.h
io_handle.o: $(SRCROOT)/gap4/template.h
io_handle.o: $(SRCROOT)/gap4/tkEdNames.h
io_handle.o: $(SRCROOT)/gap4/tkEditor.h
io_handle.o: $(SRCROOT)/gap4/tman_display.h
io_handle.o: $(SRCROOT)/gap4/undo.h
io_handle.o: $(SRCROOT)/primer3/src/dpal.h
io_handle.o: $(SRCROOT)/primer3/src/primer3.h
io_handle.o: $(SRCROOT)/tk_utils/cli_arg.h
io_handle.o: $(SRCROOT)/tk_utils/intrinsic_type.h
io_handle.o: $(SRCROOT)/tk_utils/postscript.h
io_handle.o: $(SRCROOT)/tk_utils/sheet.h
io_handle.o: $(SRCROOT)/tk_utils/text_output.h
io_handle.o: $(SRCROOT)/tk_utils/tkSheet.h
io_handle.o: $(SRCROOT)/tk_utils/tkSheet_common.h
io_handle.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
io_handle.o: $(SRCROOT)/tk_utils/tkTrace.h
io_utils.o: $(PWD)/staden_config.h
io_utils.o: $(SRCROOT)/Misc/FtoC.h
io_utils.o: $(SRCROOT)/Misc/array.h
io_utils.o: $(SRCROOT)/Misc/bitmap.h
io_utils.o: $(SRCROOT)/Misc/misc.h
io_utils.o: $(SRCROOT)/Misc/os.h
io_utils.o: $(SRCROOT)/Misc/xalloc.h
io_utils.o: $(SRCROOT)/Misc/xerror.h
io_utils.o: $(SRCROOT)/g/freetree.h
io_utils.o: $(SRCROOT)/g/g-defs.h
io_utils.o: $(SRCROOT)/g/g-error.h
io_utils.o: $(SRCROOT)/g/g-filedefs.h
io_utils.o: $(SRCROOT)/g/g-os.h
io_utils.o: $(SRCROOT)/g/g-struct.h
io_utils.o: $(SRCROOT)/gap4/IO1.h
io_utils.o: $(SRCROOT)/gap4/gap-dbstruct.h
io_utils.o: $(SRCROOT)/gap4/gap-if.h
io_utils.o: $(SRCROOT)/gap4/io_handle.h
io_utils.o: $(SRCROOT)/gap4/io_utils.h
join.o: $(PWD)/staden_config.h
join.o: $(SRCROOT)/Misc/array.h
join.o: $(SRCROOT)/Misc/bitmap.h
join.o: $(SRCROOT)/Misc/dstring.h
join.o: $(SRCROOT)/Misc/misc.h
join.o: $(SRCROOT)/Misc/os.h
join.o: $(SRCROOT)/Misc/xalloc.h
join.o: $(SRCROOT)/Misc/xerror.h
join.o: $(SRCROOT)/g/freetree.h
join.o: $(SRCROOT)/g/g-defs.h
join.o: $(SRCROOT)/g/g-error.h
join.o: $(SRCROOT)/g/g-filedefs.h
join.o: $(SRCROOT)/g/g-os.h
join.o: $(SRCROOT)/g/g-struct.h
join.o: $(SRCROOT)/gap4/IO1.h
join.o: $(SRCROOT)/gap4/IO2.h
join.o: $(SRCROOT)/gap4/contigEditor.h
join.o: $(SRCROOT)/gap4/edStructs.h
join.o: $(SRCROOT)/gap4/edUtils.h
join.o: $(SRCROOT)/gap4/fort.h
join.o: $(SRCROOT)/gap4/fortran.h
join.o: $(SRCROOT)/gap4/gap-dbstruct.h
join.o: $(SRCROOT)/gap4/gap-if.h
join.o: $(SRCROOT)/gap4/gap_globals.h
join.o: $(SRCROOT)/gap4/hash_lib.h
join.o: $(SRCROOT)/gap4/io-reg.h
join.o: $(SRCROOT)/gap4/io_handle.h
join.o: $(SRCROOT)/gap4/io_utils.h
join.o: $(SRCROOT)/gap4/list.h
join.o: $(SRCROOT)/gap4/notes.h
join.o: $(SRCROOT)/gap4/primlib.h
join.o: $(SRCROOT)/gap4/qual.h
join.o: $(SRCROOT)/gap4/tagDefs.h
join.o: $(SRCROOT)/gap4/tagUtils.h
join.o: $(SRCROOT)/gap4/template.h
join.o: $(SRCROOT)/gap4/tkEdNames.h
join.o: $(SRCROOT)/gap4/tkEditor.h
join.o: $(SRCROOT)/gap4/tman_display.h
join.o: $(SRCROOT)/gap4/undo.h
join.o: $(SRCROOT)/primer3/src/dpal.h
join.o: $(SRCROOT)/primer3/src/primer3.h
join.o: $(SRCROOT)/seq_utils/align.h
join.o: $(SRCROOT)/seq_utils/align_lib.h
join.o: $(SRCROOT)/seq_utils/align_lib_old.h
join.o: $(SRCROOT)/seq_utils/dna_utils.h
join.o: $(SRCROOT)/tk_utils/cli_arg.h
join.o: $(SRCROOT)/tk_utils/intrinsic_type.h
join.o: $(SRCROOT)/tk_utils/postscript.h
join.o: $(SRCROOT)/tk_utils/sheet.h
join.o: $(SRCROOT)/tk_utils/tcl_utils.h
join.o: $(SRCROOT)/tk_utils/tkSheet.h
join.o: $(SRCROOT)/tk_utils/tkSheet_common.h
join.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
join.o: $(SRCROOT)/tk_utils/tkTrace.h
legacy_f2c.o: $(SRCROOT)/gap4/f2c.h
list.o: $(SRCROOT)/Misc/xalloc.h
list.o: $(SRCROOT)/gap4/list.h
list_proc.o: $(PWD)/staden_config.h
list_proc.o: $(SRCROOT)/Misc/FtoC.h
list_proc.o: $(SRCROOT)/Misc/array.h
list_proc.o: $(SRCROOT)/Misc/bitmap.h
list_proc.o: $(SRCROOT)/Misc/misc.h
list_proc.o: $(SRCROOT)/Misc/os.h
list_proc.o: $(SRCROOT)/Misc/xalloc.h
list_proc.o: $(SRCROOT)/Misc/xerror.h
list_proc.o: $(SRCROOT)/g/freetree.h
list_proc.o: $(SRCROOT)/g/g-defs.h
list_proc.o: $(SRCROOT)/g/g-error.h
list_proc.o: $(SRCROOT)/g/g-filedefs.h
list_proc.o: $(SRCROOT)/g/g-os.h
list_proc.o: $(SRCROOT)/g/g-struct.h
list_proc.o: $(SRCROOT)/gap4/IO1.h
list_proc.o: $(SRCROOT)/gap4/gap-dbstruct.h
list_proc.o: $(SRCROOT)/gap4/gap-if.h
list_proc.o: $(SRCROOT)/gap4/gap_globals.h
list_proc.o: $(SRCROOT)/gap4/io_handle.h
list_proc.o: $(SRCROOT)/gap4/io_utils.h
list_proc.o: $(SRCROOT)/gap4/list.h
list_proc.o: $(SRCROOT)/gap4/newgap_cmds.h
list_proc.o: $(SRCROOT)/tk_utils/tcl_utils.h
mess.o: $(PWD)/staden_config.h
mess.o: $(SRCROOT)/Misc/misc.h
mess.o: $(SRCROOT)/Misc/os.h
mess.o: $(SRCROOT)/Misc/xalloc.h
mess.o: $(SRCROOT)/tk_utils/text_output.h
newgap_cmds.o: $(PWD)/staden_config.h
newgap_cmds.o: $(SRCROOT)/Misc/array.h
newgap_cmds.o: $(SRCROOT)/Misc/bitmap.h
newgap_cmds.o: $(SRCROOT)/Misc/dstring.h
newgap_cmds.o: $(SRCROOT)/Misc/locks.h
newgap_cmds.o: $(SRCROOT)/Misc/misc.h
newgap_cmds.o: $(SRCROOT)/Misc/os.h
newgap_cmds.o: $(SRCROOT)/Misc/xalloc.h
newgap_cmds.o: $(SRCROOT)/Misc/xerror.h
newgap_cmds.o: $(SRCROOT)/g/freetree.h
newgap_cmds.o: $(SRCROOT)/g/g-defs.h
newgap_cmds.o: $(SRCROOT)/g/g-error.h
newgap_cmds.o: $(SRCROOT)/g/g-filedefs.h
newgap_cmds.o: $(SRCROOT)/g/g-os.h
newgap_cmds.o: $(SRCROOT)/g/g-struct.h
newgap_cmds.o: $(SRCROOT)/gap4/IO1.h
newgap_cmds.o: $(SRCROOT)/gap4/active_tags.h
newgap_cmds.o: $(SRCROOT)/gap4/alter_rel.h
newgap_cmds.o: $(SRCROOT)/gap4/assemble_direct.h
newgap_cmds.o: $(SRCROOT)/gap4/auto_assemble.h
newgap_cmds.o: $(SRCROOT)/gap4/auto_break.h
newgap_cmds.o: $(SRCROOT)/gap4/break_contig.h
newgap_cmds.o: $(SRCROOT)/gap4/check_assembly.h
newgap_cmds.o: $(SRCROOT)/gap4/clip.h
newgap_cmds.o: $(SRCROOT)/gap4/complement.h
newgap_cmds.o: $(SRCROOT)/gap4/confidence_graph.h
newgap_cmds.o: $(SRCROOT)/gap4/consen.h
newgap_cmds.o: $(SRCROOT)/gap4/consistency_display.h
newgap_cmds.o: $(SRCROOT)/gap4/contig_order.h
newgap_cmds.o: $(SRCROOT)/gap4/contig_selector.h
newgap_cmds.o: $(SRCROOT)/gap4/copy_db.h
newgap_cmds.o: $(SRCROOT)/gap4/cs-object.h
newgap_cmds.o: $(SRCROOT)/gap4/dbcheck.h
newgap_cmds.o: $(SRCROOT)/gap4/dis_readings.h
newgap_cmds.o: $(SRCROOT)/gap4/dstrand.h
newgap_cmds.o: $(SRCROOT)/gap4/edStructs.h
newgap_cmds.o: $(SRCROOT)/gap4/edUtils.h
newgap_cmds.o: $(SRCROOT)/gap4/extract.h
newgap_cmds.o: $(SRCROOT)/gap4/fij.h
newgap_cmds.o: $(SRCROOT)/gap4/find_oligo.h
newgap_cmds.o: $(SRCROOT)/gap4/find_repeats.h
newgap_cmds.o: $(SRCROOT)/gap4/fort.h
newgap_cmds.o: $(SRCROOT)/gap4/fortran.h
newgap_cmds.o: $(SRCROOT)/gap4/gap-create.h
newgap_cmds.o: $(SRCROOT)/gap4/gap-dbstruct.h
newgap_cmds.o: $(SRCROOT)/gap4/gap-if.h
newgap_cmds.o: $(SRCROOT)/gap4/gap_array.h
newgap_cmds.o: $(SRCROOT)/gap4/gap_canvas_box.h
newgap_cmds.o: $(SRCROOT)/gap4/gap_cli_arg.h
newgap_cmds.o: $(SRCROOT)/gap4/gap_globals.h
newgap_cmds.o: $(SRCROOT)/gap4/hash.h
newgap_cmds.o: $(SRCROOT)/gap4/hash_lib.h
newgap_cmds.o: $(SRCROOT)/gap4/io-reg.h
newgap_cmds.o: $(SRCROOT)/gap4/io_handle.h
newgap_cmds.o: $(SRCROOT)/gap4/io_utils.h
newgap_cmds.o: $(SRCROOT)/gap4/list.h
newgap_cmds.o: $(SRCROOT)/gap4/list_proc.h
newgap_cmds.o: $(SRCROOT)/gap4/newgap_cmds.h
newgap_cmds.o: $(SRCROOT)/gap4/newgap_structs.h
newgap_cmds.o: $(SRCROOT)/gap4/notes.h
newgap_cmds.o: $(SRCROOT)/gap4/oligo_sel.h
newgap_cmds.o: $(SRCROOT)/gap4/plot_quality.h
newgap_cmds.o: $(SRCROOT)/gap4/preass.h
newgap_cmds.o: $(SRCROOT)/gap4/primlib.h
newgap_cmds.o: $(SRCROOT)/gap4/probe.h
newgap_cmds.o: $(SRCROOT)/gap4/qual.h
newgap_cmds.o: $(SRCROOT)/gap4/qualIO.h
newgap_cmds.o: $(SRCROOT)/gap4/quality_plot.h
newgap_cmds.o: $(SRCROOT)/gap4/reactions.h
newgap_cmds.o: $(SRCROOT)/gap4/reading_coverage.h
newgap_cmds.o: $(SRCROOT)/gap4/readpair.h
newgap_cmds.o: $(SRCROOT)/gap4/readpair_coverage.h
newgap_cmds.o: $(SRCROOT)/gap4/restriction_enzymes.h
newgap_cmds.o: $(SRCROOT)/gap4/ruler_display.h
newgap_cmds.o: $(SRCROOT)/gap4/seqInfo.h
newgap_cmds.o: $(SRCROOT)/gap4/show_relationships.h
newgap_cmds.o: $(SRCROOT)/gap4/shuffle_pads.h
newgap_cmds.o: $(SRCROOT)/gap4/stop_codon.h
newgap_cmds.o: $(SRCROOT)/gap4/strand_coverage.h
newgap_cmds.o: $(SRCROOT)/gap4/tagDefs.h
newgap_cmds.o: $(SRCROOT)/gap4/tagUtils.h
newgap_cmds.o: $(SRCROOT)/gap4/tagdb.h
newgap_cmds.o: $(SRCROOT)/gap4/template.h
newgap_cmds.o: $(SRCROOT)/gap4/template_display.h
newgap_cmds.o: $(SRCROOT)/gap4/tk-io-reg.h
newgap_cmds.o: $(SRCROOT)/gap4/tkEdNames.h
newgap_cmds.o: $(SRCROOT)/gap4/tkEditor.h
newgap_cmds.o: $(SRCROOT)/gap4/tman_display.h
newgap_cmds.o: $(SRCROOT)/gap4/undo.h
newgap_cmds.o: $(SRCROOT)/primer3/src/dpal.h
newgap_cmds.o: $(SRCROOT)/primer3/src/primer3.h
newgap_cmds.o: $(SRCROOT)/seq_utils/align.h
newgap_cmds.o: $(SRCROOT)/seq_utils/align_lib.h
newgap_cmds.o: $(SRCROOT)/seq_utils/align_lib_old.h
newgap_cmds.o: $(SRCROOT)/seq_utils/genetic_code.h
newgap_cmds.o: $(SRCROOT)/seq_utils/read_matrix.h
newgap_cmds.o: $(SRCROOT)/seq_utils/renz_utils.h
newgap_cmds.o: $(SRCROOT)/seq_utils/sequence_formats.h
newgap_cmds.o: $(SRCROOT)/tk_utils/canvas_box.h
newgap_cmds.o: $(SRCROOT)/tk_utils/cli_arg.h
newgap_cmds.o: $(SRCROOT)/tk_utils/intrinsic_type.h
newgap_cmds.o: $(SRCROOT)/tk_utils/postscript.h
newgap_cmds.o: $(SRCROOT)/tk_utils/sheet.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tclXkeylist.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tcl_utils.h
newgap_cmds.o: $(SRCROOT)/tk_utils/text_output.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tkSheet.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tkSheet_common.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
newgap_cmds.o: $(SRCROOT)/tk_utils/tkTrace.h
notedb.o: $(PWD)/staden_config.h
notedb.o: $(SRCROOT)/Misc/misc.h
notedb.o: $(SRCROOT)/Misc/os.h
notedb.o: $(SRCROOT)/Misc/parse_db.h
notedb.o: $(SRCROOT)/Misc/xalloc.h
notedb.o: $(SRCROOT)/gap4/notedb.h
notedb.o: $(SRCROOT)/tk_utils/intrinsic_type.h
notes.o: $(PWD)/staden_config.h
notes.o: $(SRCROOT)/Misc/array.h
notes.o: $(SRCROOT)/Misc/bitmap.h
notes.o: $(SRCROOT)/Misc/dstring.h
notes.o: $(SRCROOT)/Misc/misc.h
notes.o: $(SRCROOT)/Misc/os.h
notes.o: $(SRCROOT)/Misc/xalloc.h
notes.o: $(SRCROOT)/Misc/xerror.h
notes.o: $(SRCROOT)/g/freetree.h
notes.o: $(SRCROOT)/g/g-defs.h
notes.o: $(SRCROOT)/g/g-error.h
notes.o: $(SRCROOT)/g/g-filedefs.h
notes.o: $(SRCROOT)/g/g-os.h
notes.o: $(SRCROOT)/g/g-struct.h
notes.o: $(SRCROOT)/gap4/IO1.h
notes.o: $(SRCROOT)/gap4/edStructs.h
notes.o: $(SRCROOT)/gap4/edUtils.h
notes.o: $(SRCROOT)/gap4/fort.h
notes.o: $(SRCROOT)/gap4/fortran.h
notes.o: $(SRCROOT)/gap4/gap-dbstruct.h
notes.o: $(SRCROOT)/gap4/gap-if.h
notes.o: $(SRCROOT)/gap4/gap_cli_arg.h
notes.o: $(SRCROOT)/gap4/gap_globals.h
notes.o: $(SRCROOT)/gap4/io-reg.h
notes.o: $(SRCROOT)/gap4/io_handle.h
notes.o: $(SRCROOT)/gap4/io_utils.h
notes.o: $(SRCROOT)/gap4/list.h
notes.o: $(SRCROOT)/gap4/notes.h
notes.o: $(SRCROOT)/gap4/primlib.h
notes.o: $(SRCROOT)/gap4/qual.h
notes.o: $(SRCROOT)/gap4/tagDefs.h
notes.o: $(SRCROOT)/gap4/tagUtils.h
notes.o: $(SRCROOT)/gap4/template.h
notes.o: $(SRCROOT)/gap4/tkEdNames.h
notes.o: $(SRCROOT)/gap4/tkEditor.h
notes.o: $(SRCROOT)/gap4/tman_display.h
notes.o: $(SRCROOT)/gap4/undo.h
notes.o: $(SRCROOT)/primer3/src/dpal.h
notes.o: $(SRCROOT)/primer3/src/primer3.h
notes.o: $(SRCROOT)/tk_utils/cli_arg.h
notes.o: $(SRCROOT)/tk_utils/intrinsic_type.h
notes.o: $(SRCROOT)/tk_utils/postscript.h
notes.o: $(SRCROOT)/tk_utils/sheet.h
notes.o: $(SRCROOT)/tk_utils/tcl_utils.h
notes.o: $(SRCROOT)/tk_utils/text_output.h
notes.o: $(SRCROOT)/tk_utils/tkSheet.h
notes.o: $(SRCROOT)/tk_utils/tkSheet_common.h
notes.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
notes.o: $(SRCROOT)/tk_utils/tkTrace.h
oligo.o: $(PWD)/staden_config.h
oligo.o: $(SRCROOT)/Misc/array.h
oligo.o: $(SRCROOT)/Misc/bitmap.h
oligo.o: $(SRCROOT)/Misc/dstring.h
oligo.o: $(SRCROOT)/Misc/misc.h
oligo.o: $(SRCROOT)/Misc/os.h
oligo.o: $(SRCROOT)/Misc/reg_exp.h
oligo.o: $(SRCROOT)/Misc/xalloc.h
oligo.o: $(SRCROOT)/Misc/xerror.h
oligo.o: $(SRCROOT)/g/freetree.h
oligo.o: $(SRCROOT)/g/g-defs.h
oligo.o: $(SRCROOT)/g/g-error.h
oligo.o: $(SRCROOT)/g/g-filedefs.h
oligo.o: $(SRCROOT)/g/g-os.h
oligo.o: $(SRCROOT)/g/g-struct.h
oligo.o: $(SRCROOT)/gap4/IO1.h
oligo.o: $(SRCROOT)/gap4/edStructs.h
oligo.o: $(SRCROOT)/gap4/edUtils.h
oligo.o: $(SRCROOT)/gap4/fort.h
oligo.o: $(SRCROOT)/gap4/fortran.h
oligo.o: $(SRCROOT)/gap4/gap-dbstruct.h
oligo.o: $(SRCROOT)/gap4/gap-if.h
oligo.o: $(SRCROOT)/gap4/io-reg.h
oligo.o: $(SRCROOT)/gap4/io_handle.h
oligo.o: $(SRCROOT)/gap4/io_utils.h
oligo.o: $(SRCROOT)/gap4/list.h
oligo.o: $(SRCROOT)/gap4/oligo.h
oligo.o: $(SRCROOT)/gap4/primlib.h
oligo.o: $(SRCROOT)/gap4/qual.h
oligo.o: $(SRCROOT)/gap4/tagDefs.h
oligo.o: $(SRCROOT)/gap4/tagUtils.h
oligo.o: $(SRCROOT)/gap4/template.h
oligo.o: $(SRCROOT)/gap4/tkEdNames.h
oligo.o: $(SRCROOT)/gap4/tkEditor.h
oligo.o: $(SRCROOT)/gap4/tman_display.h
oligo.o: $(SRCROOT)/gap4/undo.h
oligo.o: $(SRCROOT)/primer3/src/dpal.h
oligo.o: $(SRCROOT)/primer3/src/primer3.h
oligo.o: $(SRCROOT)/seq_utils/dna_utils.h
oligo.o: $(SRCROOT)/tk_utils/cli_arg.h
oligo.o: $(SRCROOT)/tk_utils/intrinsic_type.h
oligo.o: $(SRCROOT)/tk_utils/postscript.h
oligo.o: $(SRCROOT)/tk_utils/sheet.h
oligo.o: $(SRCROOT)/tk_utils/tkSheet.h
oligo.o: $(SRCROOT)/tk_utils/tkSheet_common.h
oligo.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
oligo.o: $(SRCROOT)/tk_utils/tkTrace.h
oligo_sel.o: $(PWD)/staden_config.h
oligo_sel.o: $(SRCROOT)/Misc/FtoC.h
oligo_sel.o: $(SRCROOT)/Misc/array.h
oligo_sel.o: $(SRCROOT)/Misc/bitmap.h
oligo_sel.o: $(SRCROOT)/Misc/dstring.h
oligo_sel.o: $(SRCROOT)/Misc/misc.h
oligo_sel.o: $(SRCROOT)/Misc/os.h
oligo_sel.o: $(SRCROOT)/Misc/xalloc.h
oligo_sel.o: $(SRCROOT)/Misc/xerror.h
oligo_sel.o: $(SRCROOT)/g/freetree.h
oligo_sel.o: $(SRCROOT)/g/g-defs.h
oligo_sel.o: $(SRCROOT)/g/g-error.h
oligo_sel.o: $(SRCROOT)/g/g-filedefs.h
oligo_sel.o: $(SRCROOT)/g/g-os.h
oligo_sel.o: $(SRCROOT)/g/g-struct.h
oligo_sel.o: $(SRCROOT)/gap4/IO1.h
oligo_sel.o: $(SRCROOT)/gap4/dstrand.h
oligo_sel.o: $(SRCROOT)/gap4/edStructs.h
oligo_sel.o: $(SRCROOT)/gap4/edUtils.h
oligo_sel.o: $(SRCROOT)/gap4/fort.h
oligo_sel.o: $(SRCROOT)/gap4/fortran.h
oligo_sel.o: $(SRCROOT)/gap4/gap-dbstruct.h
oligo_sel.o: $(SRCROOT)/gap4/gap-if.h
oligo_sel.o: $(SRCROOT)/gap4/gap_globals.h
oligo_sel.o: $(SRCROOT)/gap4/io-reg.h
oligo_sel.o: $(SRCROOT)/gap4/io_handle.h
oligo_sel.o: $(SRCROOT)/gap4/io_utils.h
oligo_sel.o: $(SRCROOT)/gap4/list.h
oligo_sel.o: $(SRCROOT)/gap4/list_proc.h
oligo_sel.o: $(SRCROOT)/gap4/oligo_sel.h
oligo_sel.o: $(SRCROOT)/gap4/primlib.h
oligo_sel.o: $(SRCROOT)/gap4/qual.h
oligo_sel.o: $(SRCROOT)/gap4/tagDefs.h
oligo_sel.o: $(SRCROOT)/gap4/tagUtils.h
oligo_sel.o: $(SRCROOT)/gap4/template.h
oligo_sel.o: $(SRCROOT)/gap4/tkEdNames.h
oligo_sel.o: $(SRCROOT)/gap4/tkEditor.h
oligo_sel.o: $(SRCROOT)/gap4/tman_display.h
oligo_sel.o: $(SRCROOT)/gap4/undo.h
oligo_sel.o: $(SRCROOT)/primer3/src/dpal.h
oligo_sel.o: $(SRCROOT)/primer3/src/primer3.h
oligo_sel.o: $(SRCROOT)/tk_utils/cli_arg.h
oligo_sel.o: $(SRCROOT)/tk_utils/intrinsic_type.h
oligo_sel.o: $(SRCROOT)/tk_utils/postscript.h
oligo_sel.o: $(SRCROOT)/tk_utils/sheet.h
oligo_sel.o: $(SRCROOT)/tk_utils/tcl_utils.h
oligo_sel.o: $(SRCROOT)/tk_utils/text_output.h
oligo_sel.o: $(SRCROOT)/tk_utils/tkSheet.h
oligo_sel.o: $(SRCROOT)/tk_utils/tkSheet_common.h
oligo_sel.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
oligo_sel.o: $(SRCROOT)/tk_utils/tkTrace.h
parse_ft.o: $(SRCROOT)/Misc/xalloc.h
parse_ft.o: $(SRCROOT)/gap4/parse_ft.h
preass.o: $(PWD)/staden_config.h
preass.o: $(SRCROOT)/Misc/array.h
preass.o: $(SRCROOT)/Misc/bitmap.h
preass.o: $(SRCROOT)/Misc/dstring.h
preass.o: $(SRCROOT)/Misc/misc.h
preass.o: $(SRCROOT)/Misc/os.h
preass.o: $(SRCROOT)/Misc/xalloc.h
preass.o: $(SRCROOT)/Misc/xerror.h
preass.o: $(SRCROOT)/g/freetree.h
preass.o: $(SRCROOT)/g/g-defs.h
preass.o: $(SRCROOT)/g/g-error.h
preass.o: $(SRCROOT)/g/g-filedefs.h
preass.o: $(SRCROOT)/g/g-os.h
preass.o: $(SRCROOT)/g/g-struct.h
preass.o: $(SRCROOT)/gap4/IO1.h
preass.o: $(SRCROOT)/gap4/clones.h
preass.o: $(SRCROOT)/gap4/dbcheck.h
preass.o: $(SRCROOT)/gap4/edStructs.h
preass.o: $(SRCROOT)/gap4/edUtils.h
preass.o: $(SRCROOT)/gap4/fort.h
preass.o: $(SRCROOT)/gap4/fortran.h
preass.o: $(SRCROOT)/gap4/gap-dbstruct.h
preass.o: $(SRCROOT)/gap4/gap-if.h
preass.o: $(SRCROOT)/gap4/io-reg.h
preass.o: $(SRCROOT)/gap4/io_handle.h
preass.o: $(SRCROOT)/gap4/io_utils.h
preass.o: $(SRCROOT)/gap4/list.h
preass.o: $(SRCROOT)/gap4/preass.h
preass.o: $(SRCROOT)/gap4/primlib.h
preass.o: $(SRCROOT)/gap4/qual.h
preass.o: $(SRCROOT)/gap4/seqInfo.h
preass.o: $(SRCROOT)/gap4/tagDefs.h
preass.o: $(SRCROOT)/gap4/tagUtils.h
preass.o: $(SRCROOT)/gap4/template.h
preass.o: $(SRCROOT)/gap4/tkEdNames.h
preass.o: $(SRCROOT)/gap4/tkEditor.h
preass.o: $(SRCROOT)/gap4/tman_display.h
preass.o: $(SRCROOT)/gap4/undo.h
preass.o: $(SRCROOT)/primer3/src/dpal.h
preass.o: $(SRCROOT)/primer3/src/primer3.h
preass.o: $(SRCROOT)/tk_utils/cli_arg.h
preass.o: $(SRCROOT)/tk_utils/intrinsic_type.h
preass.o: $(SRCROOT)/tk_utils/postscript.h
preass.o: $(SRCROOT)/tk_utils/sheet.h
preass.o: $(SRCROOT)/tk_utils/text_output.h
preass.o: $(SRCROOT)/tk_utils/tkSheet.h
preass.o: $(SRCROOT)/tk_utils/tkSheet_common.h
preass.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
preass.o: $(SRCROOT)/tk_utils/tkTrace.h
primlib.o: $(PWD)/staden_config.h
primlib.o: $(SRCROOT)/Misc/misc.h
primlib.o: $(SRCROOT)/Misc/os.h
primlib.o: $(SRCROOT)/Misc/xalloc.h
primlib.o: $(SRCROOT)/gap4/gap_globals.h
primlib.o: $(SRCROOT)/gap4/primlib.h
primlib.o: $(SRCROOT)/primer3/src/dpal.h
primlib.o: $(SRCROOT)/primer3/src/primer3.h
primlib.o: $(SRCROOT)/tk_utils/tcl_utils.h
probe.o: $(PWD)/staden_config.h
probe.o: $(SRCROOT)/Misc/array.h
probe.o: $(SRCROOT)/Misc/bitmap.h
probe.o: $(SRCROOT)/Misc/misc.h
probe.o: $(SRCROOT)/Misc/os.h
probe.o: $(SRCROOT)/Misc/xalloc.h
probe.o: $(SRCROOT)/Misc/xerror.h
probe.o: $(SRCROOT)/g/freetree.h
probe.o: $(SRCROOT)/g/g-defs.h
probe.o: $(SRCROOT)/g/g-error.h
probe.o: $(SRCROOT)/g/g-filedefs.h
probe.o: $(SRCROOT)/g/g-os.h
probe.o: $(SRCROOT)/g/g-struct.h
probe.o: $(SRCROOT)/gap4/IO1.h
probe.o: $(SRCROOT)/gap4/assemble_direct.h
probe.o: $(SRCROOT)/gap4/fort.h
probe.o: $(SRCROOT)/gap4/gap-dbstruct.h
probe.o: $(SRCROOT)/gap4/gap-if.h
probe.o: $(SRCROOT)/gap4/gap_globals.h
probe.o: $(SRCROOT)/gap4/io_handle.h
probe.o: $(SRCROOT)/gap4/io_utils.h
probe.o: $(SRCROOT)/gap4/primlib.h
probe.o: $(SRCROOT)/gap4/probe.h
probe.o: $(SRCROOT)/gap4/seqInfo.h
probe.o: $(SRCROOT)/primer3/src/dpal.h
probe.o: $(SRCROOT)/primer3/src/primer3.h
probe.o: $(SRCROOT)/seq_utils/align.h
probe.o: $(SRCROOT)/seq_utils/align_lib_old.h
probe.o: $(SRCROOT)/seq_utils/dna_utils.h
probe.o: $(SRCROOT)/seq_utils/sequence_formats.h
probe.o: $(SRCROOT)/tk_utils/tcl_utils.h
probe.o: $(SRCROOT)/tk_utils/text_output.h
qual.o: $(PWD)/staden_config.h
qual.o: $(SRCROOT)/Misc/misc.h
qual.o: $(SRCROOT)/Misc/os.h
qual.o: $(SRCROOT)/Misc/xalloc.h
qual.o: $(SRCROOT)/gap4/gap_globals.h
qual.o: $(SRCROOT)/gap4/qual.h
qual.o: $(SRCROOT)/gap4/qualP.h
qual.o: $(SRCROOT)/tk_utils/tcl_utils.h
qualIO.o: $(PWD)/staden_config.h
qualIO.o: $(SRCROOT)/Misc/array.h
qualIO.o: $(SRCROOT)/Misc/bitmap.h
qualIO.o: $(SRCROOT)/Misc/misc.h
qualIO.o: $(SRCROOT)/Misc/os.h
qualIO.o: $(SRCROOT)/Misc/xalloc.h
qualIO.o: $(SRCROOT)/Misc/xerror.h
qualIO.o: $(SRCROOT)/g/freetree.h
qualIO.o: $(SRCROOT)/g/g-defs.h
qualIO.o: $(SRCROOT)/g/g-error.h
qualIO.o: $(SRCROOT)/g/g-filedefs.h
qualIO.o: $(SRCROOT)/g/g-os.h
qualIO.o: $(SRCROOT)/g/g-struct.h
qualIO.o: $(SRCROOT)/gap4/IO1.h
qualIO.o: $(SRCROOT)/gap4/IO2.h
qualIO.o: $(SRCROOT)/gap4/gap-dbstruct.h
qualIO.o: $(SRCROOT)/gap4/gap-if.h
qualIO.o: $(SRCROOT)/gap4/gap_globals.h
qualIO.o: $(SRCROOT)/gap4/io_handle.h
qualIO.o: $(SRCROOT)/gap4/io_utils.h
qualIO.o: $(SRCROOT)/gap4/qual.h
qualIO.o: $(SRCROOT)/gap4/qualP.h
qualIO.o: $(SRCROOT)/tk_utils/tcl_utils.h
quality_plot.o: $(PWD)/staden_config.h
quality_plot.o: $(SRCROOT)/Misc/array.h
quality_plot.o: $(SRCROOT)/Misc/bitmap.h
quality_plot.o: $(SRCROOT)/Misc/dstring.h
quality_plot.o: $(SRCROOT)/Misc/misc.h
quality_plot.o: $(SRCROOT)/Misc/os.h
quality_plot.o: $(SRCROOT)/Misc/xalloc.h
quality_plot.o: $(SRCROOT)/Misc/xerror.h
quality_plot.o: $(SRCROOT)/g/freetree.h
quality_plot.o: $(SRCROOT)/g/g-defs.h
quality_plot.o: $(SRCROOT)/g/g-error.h
quality_plot.o: $(SRCROOT)/g/g-filedefs.h
quality_plot.o: $(SRCROOT)/g/g-os.h
quality_plot.o: $(SRCROOT)/g/g-struct.h
quality_plot.o: $(SRCROOT)/gap4/IO1.h
quality_plot.o: $(SRCROOT)/gap4/edStructs.h
quality_plot.o: $(SRCROOT)/gap4/edUtils.h
quality_plot.o: $(SRCROOT)/gap4/fort.h
quality_plot.o: $(SRCROOT)/gap4/fortran.h
quality_plot.o: $(SRCROOT)/gap4/gap-dbstruct.h
quality_plot.o: $(SRCROOT)/gap4/gap-if.h
quality_plot.o: $(SRCROOT)/gap4/gap_canvas_box.h
quality_plot.o: $(SRCROOT)/gap4/gap_globals.h
quality_plot.o: $(SRCROOT)/gap4/hash.h
quality_plot.o: $(SRCROOT)/gap4/io-reg.h
quality_plot.o: $(SRCROOT)/gap4/io_handle.h
quality_plot.o: $(SRCROOT)/gap4/io_utils.h
quality_plot.o: $(SRCROOT)/gap4/list.h
quality_plot.o: $(SRCROOT)/gap4/newgap_cmds.h
quality_plot.o: $(SRCROOT)/gap4/primlib.h
quality_plot.o: $(SRCROOT)/gap4/qual.h
quality_plot.o: $(SRCROOT)/gap4/quality_plot.h
quality_plot.o: $(SRCROOT)/gap4/ruler_display.h
quality_plot.o: $(SRCROOT)/gap4/tagDefs.h
quality_plot.o: $(SRCROOT)/gap4/tagUtils.h
quality_plot.o: $(SRCROOT)/gap4/template.h
quality_plot.o: $(SRCROOT)/gap4/template_display.h
quality_plot.o: $(SRCROOT)/gap4/tkEdNames.h
quality_plot.o: $(SRCROOT)/gap4/tkEditor.h
quality_plot.o: $(SRCROOT)/gap4/tman_display.h
quality_plot.o: $(SRCROOT)/gap4/undo.h
quality_plot.o: $(SRCROOT)/primer3/src/dpal.h
quality_plot.o: $(SRCROOT)/primer3/src/primer3.h
quality_plot.o: $(SRCROOT)/tk_utils/canvas_box.h
quality_plot.o: $(SRCROOT)/tk_utils/cli_arg.h
quality_plot.o: $(SRCROOT)/tk_utils/intrinsic_type.h
quality_plot.o: $(SRCROOT)/tk_utils/postscript.h
quality_plot.o: $(SRCROOT)/tk_utils/sheet.h
quality_plot.o: $(SRCROOT)/tk_utils/tclXkeylist.h
quality_plot.o: $(SRCROOT)/tk_utils/tcl_utils.h
quality_plot.o: $(SRCROOT)/tk_utils/text_output.h
quality_plot.o: $(SRCROOT)/tk_utils/tkSheet.h
quality_plot.o: $(SRCROOT)/tk_utils/tkSheet_common.h
quality_plot.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
quality_plot.o: $(SRCROOT)/tk_utils/tkTrace.h
reactions.o: $(PWD)/staden_config.h
reactions.o: $(SRCROOT)/Misc/array.h
reactions.o: $(SRCROOT)/Misc/bitmap.h
reactions.o: $(SRCROOT)/Misc/dstring.h
reactions.o: $(SRCROOT)/Misc/misc.h
reactions.o: $(SRCROOT)/Misc/os.h
reactions.o: $(SRCROOT)/Misc/xalloc.h
reactions.o: $(SRCROOT)/Misc/xerror.h
reactions.o: $(SRCROOT)/g/freetree.h
reactions.o: $(SRCROOT)/g/g-defs.h
reactions.o: $(SRCROOT)/g/g-error.h
reactions.o: $(SRCROOT)/g/g-filedefs.h
reactions.o: $(SRCROOT)/g/g-os.h
reactions.o: $(SRCROOT)/g/g-struct.h
reactions.o: $(SRCROOT)/gap4/IO1.h
reactions.o: $(SRCROOT)/gap4/edStructs.h
reactions.o: $(SRCROOT)/gap4/edUtils.h
reactions.o: $(SRCROOT)/gap4/fort.h
reactions.o: $(SRCROOT)/gap4/fortran.h
reactions.o: $(SRCROOT)/gap4/gap-dbstruct.h
reactions.o: $(SRCROOT)/gap4/gap-if.h
reactions.o: $(SRCROOT)/gap4/gap_globals.h
reactions.o: $(SRCROOT)/gap4/io-reg.h
reactions.o: $(SRCROOT)/gap4/io_handle.h
reactions.o: $(SRCROOT)/gap4/io_utils.h
reactions.o: $(SRCROOT)/gap4/list.h
reactions.o: $(SRCROOT)/gap4/primlib.h
reactions.o: $(SRCROOT)/gap4/qual.h
reactions.o: $(SRCROOT)/gap4/qualP.h
reactions.o: $(SRCROOT)/gap4/tagDefs.h
reactions.o: $(SRCROOT)/gap4/tagUtils.h
reactions.o: $(SRCROOT)/gap4/template.h
reactions.o: $(SRCROOT)/gap4/tkEdNames.h
reactions.o: $(SRCROOT)/gap4/tkEditor.h
reactions.o: $(SRCROOT)/gap4/tman_display.h
reactions.o: $(SRCROOT)/gap4/undo.h
reactions.o: $(SRCROOT)/primer3/src/dpal.h
reactions.o: $(SRCROOT)/primer3/src/primer3.h
reactions.o: $(SRCROOT)/tk_utils/cli_arg.h
reactions.o: $(SRCROOT)/tk_utils/intrinsic_type.h
reactions.o: $(SRCROOT)/tk_utils/postscript.h
reactions.o: $(SRCROOT)/tk_utils/sheet.h
reactions.o: $(SRCROOT)/tk_utils/tcl_utils.h
reactions.o: $(SRCROOT)/tk_utils/tkSheet.h
reactions.o: $(SRCROOT)/tk_utils/tkSheet_common.h
reactions.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
reactions.o: $(SRCROOT)/tk_utils/tkTrace.h
reading_coverage.o: $(PWD)/staden_config.h
reading_coverage.o: $(SRCROOT)/Misc/array.h
reading_coverage.o: $(SRCROOT)/Misc/bitmap.h
reading_coverage.o: $(SRCROOT)/Misc/misc.h
reading_coverage.o: $(SRCROOT)/Misc/os.h
reading_coverage.o: $(SRCROOT)/Misc/xalloc.h
reading_coverage.o: $(SRCROOT)/Misc/xerror.h
reading_coverage.o: $(SRCROOT)/g/freetree.h
reading_coverage.o: $(SRCROOT)/g/g-defs.h
reading_coverage.o: $(SRCROOT)/g/g-error.h
reading_coverage.o: $(SRCROOT)/g/g-filedefs.h
reading_coverage.o: $(SRCROOT)/g/g-os.h
reading_coverage.o: $(SRCROOT)/g/g-struct.h
reading_coverage.o: $(SRCROOT)/gap4/IO1.h
reading_coverage.o: $(SRCROOT)/gap4/consen.h
reading_coverage.o: $(SRCROOT)/gap4/consistency_display.h
reading_coverage.o: $(SRCROOT)/gap4/gap-dbstruct.h
reading_coverage.o: $(SRCROOT)/gap4/gap-if.h
reading_coverage.o: $(SRCROOT)/gap4/gap_canvas_box.h
reading_coverage.o: $(SRCROOT)/gap4/gap_globals.h
reading_coverage.o: $(SRCROOT)/gap4/hash.h
reading_coverage.o: $(SRCROOT)/gap4/io-reg.h
reading_coverage.o: $(SRCROOT)/gap4/io_handle.h
reading_coverage.o: $(SRCROOT)/gap4/io_utils.h
reading_coverage.o: $(SRCROOT)/gap4/list.h
reading_coverage.o: $(SRCROOT)/gap4/newgap_cmds.h
reading_coverage.o: $(SRCROOT)/gap4/qual.h
reading_coverage.o: $(SRCROOT)/gap4/reading_coverage.h
reading_coverage.o: $(SRCROOT)/gap4/ruler_display.h
reading_coverage.o: $(SRCROOT)/gap4/template.h
reading_coverage.o: $(SRCROOT)/gap4/template_display.h
reading_coverage.o: $(SRCROOT)/tk_utils/canvas_box.h
reading_coverage.o: $(SRCROOT)/tk_utils/tclXkeylist.h
reading_coverage.o: $(SRCROOT)/tk_utils/tcl_utils.h
reading_coverage.o: $(SRCROOT)/tk_utils/text_output.h
readpair.o: $(PWD)/staden_config.h
readpair.o: $(SRCROOT)/Misc/array.h
readpair.o: $(SRCROOT)/Misc/bitmap.h
readpair.o: $(SRCROOT)/Misc/dstring.h
readpair.o: $(SRCROOT)/Misc/misc.h
readpair.o: $(SRCROOT)/Misc/os.h
readpair.o: $(SRCROOT)/Misc/xalloc.h
readpair.o: $(SRCROOT)/Misc/xerror.h
readpair.o: $(SRCROOT)/g/freetree.h
readpair.o: $(SRCROOT)/g/g-defs.h
readpair.o: $(SRCROOT)/g/g-error.h
readpair.o: $(SRCROOT)/g/g-filedefs.h
readpair.o: $(SRCROOT)/g/g-os.h
readpair.o: $(SRCROOT)/g/g-struct.h
readpair.o: $(SRCROOT)/gap4/IO1.h
readpair.o: $(SRCROOT)/gap4/complement.h
readpair.o: $(SRCROOT)/gap4/contigEditor.h
readpair.o: $(SRCROOT)/gap4/contig_selector.h
readpair.o: $(SRCROOT)/gap4/cs-object.h
readpair.o: $(SRCROOT)/gap4/edStructs.h
readpair.o: $(SRCROOT)/gap4/edUtils.h
readpair.o: $(SRCROOT)/gap4/fort.h
readpair.o: $(SRCROOT)/gap4/fortran.h
readpair.o: $(SRCROOT)/gap4/gap-dbstruct.h
readpair.o: $(SRCROOT)/gap4/gap-if.h
readpair.o: $(SRCROOT)/gap4/gap_globals.h
readpair.o: $(SRCROOT)/gap4/io-reg.h
readpair.o: $(SRCROOT)/gap4/io_handle.h
readpair.o: $(SRCROOT)/gap4/io_utils.h
readpair.o: $(SRCROOT)/gap4/list.h
readpair.o: $(SRCROOT)/gap4/newgap_cmds.h
readpair.o: $(SRCROOT)/gap4/primlib.h
readpair.o: $(SRCROOT)/gap4/qual.h
readpair.o: $(SRCROOT)/gap4/readpair.h
readpair.o: $(SRCROOT)/gap4/tagDefs.h
readpair.o: $(SRCROOT)/gap4/tagUtils.h
readpair.o: $(SRCROOT)/gap4/template.h
readpair.o: $(SRCROOT)/gap4/tkEdNames.h
readpair.o: $(SRCROOT)/gap4/tkEditor.h
readpair.o: $(SRCROOT)/gap4/tman_display.h
readpair.o: $(SRCROOT)/gap4/undo.h
readpair.o: $(SRCROOT)/primer3/src/dpal.h
readpair.o: $(SRCROOT)/primer3/src/primer3.h
readpair.o: $(SRCROOT)/tk_utils/canvas_box.h
readpair.o: $(SRCROOT)/tk_utils/cli_arg.h
readpair.o: $(SRCROOT)/tk_utils/intrinsic_type.h
readpair.o: $(SRCROOT)/tk_utils/postscript.h
readpair.o: $(SRCROOT)/tk_utils/sheet.h
readpair.o: $(SRCROOT)/tk_utils/tclXkeylist.h
readpair.o: $(SRCROOT)/tk_utils/tcl_utils.h
readpair.o: $(SRCROOT)/tk_utils/text_output.h
readpair.o: $(SRCROOT)/tk_utils/tkSheet.h
readpair.o: $(SRCROOT)/tk_utils/tkSheet_common.h
readpair.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
readpair.o: $(SRCROOT)/tk_utils/tkTrace.h
readpair_coverage.o: $(PWD)/staden_config.h
readpair_coverage.o: $(SRCROOT)/Misc/array.h
readpair_coverage.o: $(SRCROOT)/Misc/bitmap.h
readpair_coverage.o: $(SRCROOT)/Misc/misc.h
readpair_coverage.o: $(SRCROOT)/Misc/os.h
readpair_coverage.o: $(SRCROOT)/Misc/xalloc.h
readpair_coverage.o: $(SRCROOT)/Misc/xerror.h
readpair_coverage.o: $(SRCROOT)/g/freetree.h
readpair_coverage.o: $(SRCROOT)/g/g-defs.h
readpair_coverage.o: $(SRCROOT)/g/g-error.h
readpair_coverage.o: $(SRCROOT)/g/g-filedefs.h
readpair_coverage.o: $(SRCROOT)/g/g-os.h
readpair_coverage.o: $(SRCROOT)/g/g-struct.h
readpair_coverage.o: $(SRCROOT)/gap4/IO1.h
readpair_coverage.o: $(SRCROOT)/gap4/consen.h
readpair_coverage.o: $(SRCROOT)/gap4/consistency_display.h
readpair_coverage.o: $(SRCROOT)/gap4/gap-dbstruct.h
readpair_coverage.o: $(SRCROOT)/gap4/gap-if.h
readpair_coverage.o: $(SRCROOT)/gap4/gap_canvas_box.h
readpair_coverage.o: $(SRCROOT)/gap4/gap_globals.h
readpair_coverage.o: $(SRCROOT)/gap4/hash.h
readpair_coverage.o: $(SRCROOT)/gap4/io-reg.h
readpair_coverage.o: $(SRCROOT)/gap4/io_handle.h
readpair_coverage.o: $(SRCROOT)/gap4/io_utils.h
readpair_coverage.o: $(SRCROOT)/gap4/list.h
readpair_coverage.o: $(SRCROOT)/gap4/newgap_cmds.h
readpair_coverage.o: $(SRCROOT)/gap4/qual.h
readpair_coverage.o: $(SRCROOT)/gap4/reading_coverage.h
readpair_coverage.o: $(SRCROOT)/gap4/readpair_coverage.h
readpair_coverage.o: $(SRCROOT)/gap4/ruler_display.h
readpair_coverage.o: $(SRCROOT)/gap4/template.h
readpair_coverage.o: $(SRCROOT)/gap4/template_display.h
readpair_coverage.o: $(SRCROOT)/tk_utils/canvas_box.h
readpair_coverage.o: $(SRCROOT)/tk_utils/tclXkeylist.h
readpair_coverage.o: $(SRCROOT)/tk_utils/tcl_utils.h
readpair_coverage.o: $(SRCROOT)/tk_utils/text_output.h
restriction_enzymes.o: $(PWD)/staden_config.h
restriction_enzymes.o: $(SRCROOT)/Misc/array.h
restriction_enzymes.o: $(SRCROOT)/Misc/bitmap.h
restriction_enzymes.o: $(SRCROOT)/Misc/dstring.h
restriction_enzymes.o: $(SRCROOT)/Misc/getfile.h
restriction_enzymes.o: $(SRCROOT)/Misc/misc.h
restriction_enzymes.o: $(SRCROOT)/Misc/os.h
restriction_enzymes.o: $(SRCROOT)/Misc/xalloc.h
restriction_enzymes.o: $(SRCROOT)/Misc/xerror.h
restriction_enzymes.o: $(SRCROOT)/g/freetree.h
restriction_enzymes.o: $(SRCROOT)/g/g-defs.h
restriction_enzymes.o: $(SRCROOT)/g/g-error.h
restriction_enzymes.o: $(SRCROOT)/g/g-filedefs.h
restriction_enzymes.o: $(SRCROOT)/g/g-os.h
restriction_enzymes.o: $(SRCROOT)/g/g-struct.h
restriction_enzymes.o: $(SRCROOT)/gap4/IO1.h
restriction_enzymes.o: $(SRCROOT)/gap4/edStructs.h
restriction_enzymes.o: $(SRCROOT)/gap4/edUtils.h
restriction_enzymes.o: $(SRCROOT)/gap4/fort.h
restriction_enzymes.o: $(SRCROOT)/gap4/fortran.h
restriction_enzymes.o: $(SRCROOT)/gap4/gap-dbstruct.h
restriction_enzymes.o: $(SRCROOT)/gap4/gap-if.h
restriction_enzymes.o: $(SRCROOT)/gap4/gap_canvas_box.h
restriction_enzymes.o: $(SRCROOT)/gap4/gap_globals.h
restriction_enzymes.o: $(SRCROOT)/gap4/hash.h
restriction_enzymes.o: $(SRCROOT)/gap4/io-reg.h
restriction_enzymes.o: $(SRCROOT)/gap4/io_handle.h
restriction_enzymes.o: $(SRCROOT)/gap4/io_utils.h
restriction_enzymes.o: $(SRCROOT)/gap4/list.h
restriction_enzymes.o: $(SRCROOT)/gap4/list_proc.h
restriction_enzymes.o: $(SRCROOT)/gap4/newgap_cmds.h
restriction_enzymes.o: $(SRCROOT)/gap4/primlib.h
restriction_enzymes.o: $(SRCROOT)/gap4/qual.h
restriction_enzymes.o: $(SRCROOT)/gap4/restriction_enzymes.h
restriction_enzymes.o: $(SRCROOT)/gap4/ruler_display.h
restriction_enzymes.o: $(SRCROOT)/gap4/tagDefs.h
restriction_enzymes.o: $(SRCROOT)/gap4/tagUtils.h
restriction_enzymes.o: $(SRCROOT)/gap4/template.h
restriction_enzymes.o: $(SRCROOT)/gap4/template_display.h
restriction_enzymes.o: $(SRCROOT)/gap4/tkEdNames.h
restriction_enzymes.o: $(SRCROOT)/gap4/tkEditor.h
restriction_enzymes.o: $(SRCROOT)/gap4/tman_display.h
restriction_enzymes.o: $(SRCROOT)/gap4/undo.h
restriction_enzymes.o: $(SRCROOT)/primer3/src/dpal.h
restriction_enzymes.o: $(SRCROOT)/primer3/src/primer3.h
restriction_enzymes.o: $(SRCROOT)/seq_utils/dna_utils.h
restriction_enzymes.o: $(SRCROOT)/seq_utils/renz_utils.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/canvas_box.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/cli_arg.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/intrinsic_type.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/postscript.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/restriction_enzyme_map.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/sheet.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tclXkeylist.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tcl_utils.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/text_output.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tkSheet.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tkSheet_common.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
restriction_enzymes.o: $(SRCROOT)/tk_utils/tkTrace.h
ruler_display.o: $(PWD)/staden_config.h
ruler_display.o: $(SRCROOT)/Misc/array.h
ruler_display.o: $(SRCROOT)/Misc/bitmap.h
ruler_display.o: $(SRCROOT)/Misc/misc.h
ruler_display.o: $(SRCROOT)/Misc/os.h
ruler_display.o: $(SRCROOT)/Misc/xalloc.h
ruler_display.o: $(SRCROOT)/Misc/xerror.h
ruler_display.o: $(SRCROOT)/g/freetree.h
ruler_display.o: $(SRCROOT)/g/g-defs.h
ruler_display.o: $(SRCROOT)/g/g-error.h
ruler_display.o: $(SRCROOT)/g/g-filedefs.h
ruler_display.o: $(SRCROOT)/g/g-os.h
ruler_display.o: $(SRCROOT)/g/g-struct.h
ruler_display.o: $(SRCROOT)/gap4/IO1.h
ruler_display.o: $(SRCROOT)/gap4/gap-dbstruct.h
ruler_display.o: $(SRCROOT)/gap4/gap-if.h
ruler_display.o: $(SRCROOT)/gap4/gap_globals.h
ruler_display.o: $(SRCROOT)/gap4/hash.h
ruler_display.o: $(SRCROOT)/gap4/io-reg.h
ruler_display.o: $(SRCROOT)/gap4/io_handle.h
ruler_display.o: $(SRCROOT)/gap4/io_utils.h
ruler_display.o: $(SRCROOT)/gap4/list.h
ruler_display.o: $(SRCROOT)/gap4/ruler_display.h
ruler_display.o: $(SRCROOT)/gap4/template.h
ruler_display.o: $(SRCROOT)/gap4/template_display.h
ruler_display.o: $(SRCROOT)/tk_utils/canvas_box.h
ruler_display.o: $(SRCROOT)/tk_utils/ruler_tick.h
ruler_display.o: $(SRCROOT)/tk_utils/tclXkeylist.h
ruler_display.o: $(SRCROOT)/tk_utils/tcl_utils.h
searchUtils.o: $(PWD)/staden_config.h
searchUtils.o: $(SRCROOT)/Misc/array.h
searchUtils.o: $(SRCROOT)/Misc/bitmap.h
searchUtils.o: $(SRCROOT)/Misc/dstring.h
searchUtils.o: $(SRCROOT)/Misc/misc.h
searchUtils.o: $(SRCROOT)/Misc/os.h
searchUtils.o: $(SRCROOT)/Misc/reg_exp.h
searchUtils.o: $(SRCROOT)/Misc/xalloc.h
searchUtils.o: $(SRCROOT)/Misc/xerror.h
searchUtils.o: $(SRCROOT)/g/freetree.h
searchUtils.o: $(SRCROOT)/g/g-defs.h
searchUtils.o: $(SRCROOT)/g/g-error.h
searchUtils.o: $(SRCROOT)/g/g-filedefs.h
searchUtils.o: $(SRCROOT)/g/g-os.h
searchUtils.o: $(SRCROOT)/g/g-struct.h
searchUtils.o: $(SRCROOT)/gap4/IO1.h
searchUtils.o: $(SRCROOT)/gap4/active_tags.h
searchUtils.o: $(SRCROOT)/gap4/contigEditor.h
searchUtils.o: $(SRCROOT)/gap4/edStructs.h
searchUtils.o: $(SRCROOT)/gap4/edUtils.h
searchUtils.o: $(SRCROOT)/gap4/fort.h
searchUtils.o: $(SRCROOT)/gap4/fortran.h
searchUtils.o: $(SRCROOT)/gap4/gap-dbstruct.h
searchUtils.o: $(SRCROOT)/gap4/gap-if.h
searchUtils.o: $(SRCROOT)/gap4/io-reg.h
searchUtils.o: $(SRCROOT)/gap4/io_handle.h
searchUtils.o: $(SRCROOT)/gap4/io_utils.h
searchUtils.o: $(SRCROOT)/gap4/list.h
searchUtils.o: $(SRCROOT)/gap4/primlib.h
searchUtils.o: $(SRCROOT)/gap4/qual.h
searchUtils.o: $(SRCROOT)/gap4/select.h
searchUtils.o: $(SRCROOT)/gap4/tagDefs.h
searchUtils.o: $(SRCROOT)/gap4/tagUtils.h
searchUtils.o: $(SRCROOT)/gap4/tagdb.h
searchUtils.o: $(SRCROOT)/gap4/template.h
searchUtils.o: $(SRCROOT)/gap4/tkEdNames.h
searchUtils.o: $(SRCROOT)/gap4/tkEditor.h
searchUtils.o: $(SRCROOT)/gap4/tman_display.h
searchUtils.o: $(SRCROOT)/gap4/tman_interface.h
searchUtils.o: $(SRCROOT)/gap4/undo.h
searchUtils.o: $(SRCROOT)/primer3/src/dpal.h
searchUtils.o: $(SRCROOT)/primer3/src/primer3.h
searchUtils.o: $(SRCROOT)/seq_utils/dna_utils.h
searchUtils.o: $(SRCROOT)/seq_utils/search_utils.h
searchUtils.o: $(SRCROOT)/tk_utils/cli_arg.h
searchUtils.o: $(SRCROOT)/tk_utils/intrinsic_type.h
searchUtils.o: $(SRCROOT)/tk_utils/postscript.h
searchUtils.o: $(SRCROOT)/tk_utils/sheet.h
searchUtils.o: $(SRCROOT)/tk_utils/text_output.h
searchUtils.o: $(SRCROOT)/tk_utils/tkSheet.h
searchUtils.o: $(SRCROOT)/tk_utils/tkSheet_common.h
searchUtils.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
searchUtils.o: $(SRCROOT)/tk_utils/tkTrace.h
seqInfo.o: $(PWD)/staden_config.h
seqInfo.o: $(SRCROOT)/Misc/FtoC.h
seqInfo.o: $(SRCROOT)/Misc/array.h
seqInfo.o: $(SRCROOT)/Misc/bitmap.h
seqInfo.o: $(SRCROOT)/Misc/dstring.h
seqInfo.o: $(SRCROOT)/Misc/misc.h
seqInfo.o: $(SRCROOT)/Misc/os.h
seqInfo.o: $(SRCROOT)/Misc/xalloc.h
seqInfo.o: $(SRCROOT)/Misc/xerror.h
seqInfo.o: $(SRCROOT)/g/freetree.h
seqInfo.o: $(SRCROOT)/g/g-defs.h
seqInfo.o: $(SRCROOT)/g/g-error.h
seqInfo.o: $(SRCROOT)/g/g-filedefs.h
seqInfo.o: $(SRCROOT)/g/g-os.h
seqInfo.o: $(SRCROOT)/g/g-struct.h
seqInfo.o: $(SRCROOT)/gap4/IO1.h
seqInfo.o: $(SRCROOT)/gap4/edStructs.h
seqInfo.o: $(SRCROOT)/gap4/edUtils.h
seqInfo.o: $(SRCROOT)/gap4/fort.h
seqInfo.o: $(SRCROOT)/gap4/fortran.h
seqInfo.o: $(SRCROOT)/gap4/gap-dbstruct.h
seqInfo.o: $(SRCROOT)/gap4/gap-if.h
seqInfo.o: $(SRCROOT)/gap4/io-reg.h
seqInfo.o: $(SRCROOT)/gap4/io_handle.h
seqInfo.o: $(SRCROOT)/gap4/io_utils.h
seqInfo.o: $(SRCROOT)/gap4/list.h
seqInfo.o: $(SRCROOT)/gap4/parse_ft.h
seqInfo.o: $(SRCROOT)/gap4/primlib.h
seqInfo.o: $(SRCROOT)/gap4/qual.h
seqInfo.o: $(SRCROOT)/gap4/seqInfo.h
seqInfo.o: $(SRCROOT)/gap4/tagDefs.h
seqInfo.o: $(SRCROOT)/gap4/tagUtils.h
seqInfo.o: $(SRCROOT)/gap4/tagdb.h
seqInfo.o: $(SRCROOT)/gap4/template.h
seqInfo.o: $(SRCROOT)/gap4/tkEdNames.h
seqInfo.o: $(SRCROOT)/gap4/tkEditor.h
seqInfo.o: $(SRCROOT)/gap4/tman_display.h
seqInfo.o: $(SRCROOT)/gap4/undo.h
seqInfo.o: $(SRCROOT)/primer3/src/dpal.h
seqInfo.o: $(SRCROOT)/primer3/src/primer3.h
seqInfo.o: $(SRCROOT)/tk_utils/cli_arg.h
seqInfo.o: $(SRCROOT)/tk_utils/intrinsic_type.h
seqInfo.o: $(SRCROOT)/tk_utils/postscript.h
seqInfo.o: $(SRCROOT)/tk_utils/sheet.h
seqInfo.o: $(SRCROOT)/tk_utils/tkSheet.h
seqInfo.o: $(SRCROOT)/tk_utils/tkSheet_common.h
seqInfo.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
seqInfo.o: $(SRCROOT)/tk_utils/tkTrace.h
show_relationships.o: $(PWD)/staden_config.h
show_relationships.o: $(SRCROOT)/Misc/array.h
show_relationships.o: $(SRCROOT)/Misc/bitmap.h
show_relationships.o: $(SRCROOT)/Misc/misc.h
show_relationships.o: $(SRCROOT)/Misc/os.h
show_relationships.o: $(SRCROOT)/Misc/xalloc.h
show_relationships.o: $(SRCROOT)/Misc/xerror.h
show_relationships.o: $(SRCROOT)/g/freetree.h
show_relationships.o: $(SRCROOT)/g/g-defs.h
show_relationships.o: $(SRCROOT)/g/g-error.h
show_relationships.o: $(SRCROOT)/g/g-filedefs.h
show_relationships.o: $(SRCROOT)/g/g-os.h
show_relationships.o: $(SRCROOT)/g/g-struct.h
show_relationships.o: $(SRCROOT)/gap4/IO1.h
show_relationships.o: $(SRCROOT)/gap4/gap-dbstruct.h
show_relationships.o: $(SRCROOT)/gap4/gap-if.h
show_relationships.o: $(SRCROOT)/gap4/io_handle.h
show_relationships.o: $(SRCROOT)/gap4/io_utils.h
show_relationships.o: $(SRCROOT)/gap4/newgap_structs.h
show_relationships.o: $(SRCROOT)/tk_utils/cli_arg.h
show_relationships.o: $(SRCROOT)/tk_utils/text_output.h
shuffle_pads.o: $(PWD)/staden_config.h
shuffle_pads.o: $(SRCROOT)/Misc/array.h
shuffle_pads.o: $(SRCROOT)/Misc/bitmap.h
shuffle_pads.o: $(SRCROOT)/Misc/dstring.h
shuffle_pads.o: $(SRCROOT)/Misc/misc.h
shuffle_pads.o: $(SRCROOT)/Misc/os.h
shuffle_pads.o: $(SRCROOT)/Misc/xalloc.h
shuffle_pads.o: $(SRCROOT)/Misc/xerror.h
shuffle_pads.o: $(SRCROOT)/g/freetree.h
shuffle_pads.o: $(SRCROOT)/g/g-defs.h
shuffle_pads.o: $(SRCROOT)/g/g-error.h
shuffle_pads.o: $(SRCROOT)/g/g-filedefs.h
shuffle_pads.o: $(SRCROOT)/g/g-os.h
shuffle_pads.o: $(SRCROOT)/g/g-struct.h
shuffle_pads.o: $(SRCROOT)/gap4/IO1.h
shuffle_pads.o: $(SRCROOT)/gap4/dis_readings.h
shuffle_pads.o: $(SRCROOT)/gap4/edStructs.h
shuffle_pads.o: $(SRCROOT)/gap4/edUtils.h
shuffle_pads.o: $(SRCROOT)/gap4/fort.h
shuffle_pads.o: $(SRCROOT)/gap4/fortran.h
shuffle_pads.o: $(SRCROOT)/gap4/gap-dbstruct.h
shuffle_pads.o: $(SRCROOT)/gap4/gap-if.h
shuffle_pads.o: $(SRCROOT)/gap4/io-reg.h
shuffle_pads.o: $(SRCROOT)/gap4/io_handle.h
shuffle_pads.o: $(SRCROOT)/gap4/io_utils.h
shuffle_pads.o: $(SRCROOT)/gap4/list.h
shuffle_pads.o: $(SRCROOT)/gap4/primlib.h
shuffle_pads.o: $(SRCROOT)/gap4/qual.h
shuffle_pads.o: $(SRCROOT)/gap4/shuffle_pads.h
shuffle_pads.o: $(SRCROOT)/gap4/tagDefs.h
shuffle_pads.o: $(SRCROOT)/gap4/tagUtils.h
shuffle_pads.o: $(SRCROOT)/gap4/template.h
shuffle_pads.o: $(SRCROOT)/gap4/tkEdNames.h
shuffle_pads.o: $(SRCROOT)/gap4/tkEditor.h
shuffle_pads.o: $(SRCROOT)/gap4/tman_display.h
shuffle_pads.o: $(SRCROOT)/gap4/undo.h
shuffle_pads.o: $(SRCROOT)/primer3/src/dpal.h
shuffle_pads.o: $(SRCROOT)/primer3/src/primer3.h
shuffle_pads.o: $(SRCROOT)/seq_utils/align.h
shuffle_pads.o: $(SRCROOT)/seq_utils/align_lib.h
shuffle_pads.o: $(SRCROOT)/seq_utils/align_lib_old.h
shuffle_pads.o: $(SRCROOT)/seq_utils/dna_utils.h
shuffle_pads.o: $(SRCROOT)/tk_utils/cli_arg.h
shuffle_pads.o: $(SRCROOT)/tk_utils/intrinsic_type.h
shuffle_pads.o: $(SRCROOT)/tk_utils/postscript.h
shuffle_pads.o: $(SRCROOT)/tk_utils/sheet.h
shuffle_pads.o: $(SRCROOT)/tk_utils/text_output.h
shuffle_pads.o: $(SRCROOT)/tk_utils/tkSheet.h
shuffle_pads.o: $(SRCROOT)/tk_utils/tkSheet_common.h
shuffle_pads.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
shuffle_pads.o: $(SRCROOT)/tk_utils/tkTrace.h
stack_dump.o: $(PWD)/staden_config.h
stack_dump.o: $(SRCROOT)/Misc/array.h
stack_dump.o: $(SRCROOT)/Misc/bitmap.h
stack_dump.o: $(SRCROOT)/Misc/misc.h
stack_dump.o: $(SRCROOT)/Misc/os.h
stack_dump.o: $(SRCROOT)/Misc/xalloc.h
stack_dump.o: $(SRCROOT)/Misc/xerror.h
stack_dump.o: $(SRCROOT)/g/g-error.h
stack_dump.o: $(SRCROOT)/gap4/gap-error.h
stack_dump.o: $(SRCROOT)/gap4/stack_dump.h
stop_codon.o: $(PWD)/staden_config.h
stop_codon.o: $(SRCROOT)/Misc/array.h
stop_codon.o: $(SRCROOT)/Misc/bitmap.h
stop_codon.o: $(SRCROOT)/Misc/dstring.h
stop_codon.o: $(SRCROOT)/Misc/misc.h
stop_codon.o: $(SRCROOT)/Misc/os.h
stop_codon.o: $(SRCROOT)/Misc/xalloc.h
stop_codon.o: $(SRCROOT)/Misc/xerror.h
stop_codon.o: $(SRCROOT)/g/freetree.h
stop_codon.o: $(SRCROOT)/g/g-defs.h
stop_codon.o: $(SRCROOT)/g/g-error.h
stop_codon.o: $(SRCROOT)/g/g-filedefs.h
stop_codon.o: $(SRCROOT)/g/g-os.h
stop_codon.o: $(SRCROOT)/g/g-struct.h
stop_codon.o: $(SRCROOT)/gap4/IO1.h
stop_codon.o: $(SRCROOT)/gap4/edStructs.h
stop_codon.o: $(SRCROOT)/gap4/edUtils.h
stop_codon.o: $(SRCROOT)/gap4/fort.h
stop_codon.o: $(SRCROOT)/gap4/fortran.h
stop_codon.o: $(SRCROOT)/gap4/gap-dbstruct.h
stop_codon.o: $(SRCROOT)/gap4/gap-if.h
stop_codon.o: $(SRCROOT)/gap4/gap_canvas_box.h
stop_codon.o: $(SRCROOT)/gap4/gap_globals.h
stop_codon.o: $(SRCROOT)/gap4/hash.h
stop_codon.o: $(SRCROOT)/gap4/io-reg.h
stop_codon.o: $(SRCROOT)/gap4/io_handle.h
stop_codon.o: $(SRCROOT)/gap4/io_utils.h
stop_codon.o: $(SRCROOT)/gap4/list.h
stop_codon.o: $(SRCROOT)/gap4/primlib.h
stop_codon.o: $(SRCROOT)/gap4/qual.h
stop_codon.o: $(SRCROOT)/gap4/restriction_enzymes.h
stop_codon.o: $(SRCROOT)/gap4/ruler_display.h
stop_codon.o: $(SRCROOT)/gap4/stop_codon.h
stop_codon.o: $(SRCROOT)/gap4/tagDefs.h
stop_codon.o: $(SRCROOT)/gap4/tagUtils.h
stop_codon.o: $(SRCROOT)/gap4/template.h
stop_codon.o: $(SRCROOT)/gap4/template_display.h
stop_codon.o: $(SRCROOT)/gap4/tkEdNames.h
stop_codon.o: $(SRCROOT)/gap4/tkEditor.h
stop_codon.o: $(SRCROOT)/gap4/tman_display.h
stop_codon.o: $(SRCROOT)/gap4/undo.h
stop_codon.o: $(SRCROOT)/primer3/src/dpal.h
stop_codon.o: $(SRCROOT)/primer3/src/primer3.h
stop_codon.o: $(SRCROOT)/seq_utils/dna_utils.h
stop_codon.o: $(SRCROOT)/seq_utils/renz_utils.h
stop_codon.o: $(SRCROOT)/tk_utils/canvas_box.h
stop_codon.o: $(SRCROOT)/tk_utils/cli_arg.h
stop_codon.o: $(SRCROOT)/tk_utils/intrinsic_type.h
stop_codon.o: $(SRCROOT)/tk_utils/postscript.h
stop_codon.o: $(SRCROOT)/tk_utils/restriction_enzyme_map.h
stop_codon.o: $(SRCROOT)/tk_utils/sheet.h
stop_codon.o: $(SRCROOT)/tk_utils/tclXkeylist.h
stop_codon.o: $(SRCROOT)/tk_utils/tcl_utils.h
stop_codon.o: $(SRCROOT)/tk_utils/tkSheet.h
stop_codon.o: $(SRCROOT)/tk_utils/tkSheet_common.h
stop_codon.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
stop_codon.o: $(SRCROOT)/tk_utils/tkTrace.h
strand_coverage.o: $(PWD)/staden_config.h
strand_coverage.o: $(SRCROOT)/Misc/array.h
strand_coverage.o: $(SRCROOT)/Misc/bitmap.h
strand_coverage.o: $(SRCROOT)/Misc/misc.h
strand_coverage.o: $(SRCROOT)/Misc/os.h
strand_coverage.o: $(SRCROOT)/Misc/xalloc.h
strand_coverage.o: $(SRCROOT)/Misc/xerror.h
strand_coverage.o: $(SRCROOT)/g/freetree.h
strand_coverage.o: $(SRCROOT)/g/g-defs.h
strand_coverage.o: $(SRCROOT)/g/g-error.h
strand_coverage.o: $(SRCROOT)/g/g-filedefs.h
strand_coverage.o: $(SRCROOT)/g/g-os.h
strand_coverage.o: $(SRCROOT)/g/g-struct.h
strand_coverage.o: $(SRCROOT)/gap4/IO1.h
strand_coverage.o: $(SRCROOT)/gap4/consen.h
strand_coverage.o: $(SRCROOT)/gap4/consistency_display.h
strand_coverage.o: $(SRCROOT)/gap4/gap-dbstruct.h
strand_coverage.o: $(SRCROOT)/gap4/gap-if.h
strand_coverage.o: $(SRCROOT)/gap4/gap_canvas_box.h
strand_coverage.o: $(SRCROOT)/gap4/gap_globals.h
strand_coverage.o: $(SRCROOT)/gap4/hash.h
strand_coverage.o: $(SRCROOT)/gap4/io-reg.h
strand_coverage.o: $(SRCROOT)/gap4/io_handle.h
strand_coverage.o: $(SRCROOT)/gap4/io_utils.h
strand_coverage.o: $(SRCROOT)/gap4/list.h
strand_coverage.o: $(SRCROOT)/gap4/newgap_cmds.h
strand_coverage.o: $(SRCROOT)/gap4/qual.h
strand_coverage.o: $(SRCROOT)/gap4/ruler_display.h
strand_coverage.o: $(SRCROOT)/gap4/strand_coverage.h
strand_coverage.o: $(SRCROOT)/gap4/template.h
strand_coverage.o: $(SRCROOT)/gap4/template_display.h
strand_coverage.o: $(SRCROOT)/tk_utils/canvas_box.h
strand_coverage.o: $(SRCROOT)/tk_utils/tclXkeylist.h
strand_coverage.o: $(SRCROOT)/tk_utils/tcl_utils.h
strand_coverage.o: $(SRCROOT)/tk_utils/text_output.h
tagEditor.o: $(PWD)/staden_config.h
tagEditor.o: $(SRCROOT)/Misc/array.h
tagEditor.o: $(SRCROOT)/Misc/bitmap.h
tagEditor.o: $(SRCROOT)/Misc/dstring.h
tagEditor.o: $(SRCROOT)/Misc/misc.h
tagEditor.o: $(SRCROOT)/Misc/os.h
tagEditor.o: $(SRCROOT)/Misc/xalloc.h
tagEditor.o: $(SRCROOT)/Misc/xerror.h
tagEditor.o: $(SRCROOT)/g/freetree.h
tagEditor.o: $(SRCROOT)/g/g-defs.h
tagEditor.o: $(SRCROOT)/g/g-error.h
tagEditor.o: $(SRCROOT)/g/g-filedefs.h
tagEditor.o: $(SRCROOT)/g/g-os.h
tagEditor.o: $(SRCROOT)/g/g-struct.h
tagEditor.o: $(SRCROOT)/gap4/IO1.h
tagEditor.o: $(SRCROOT)/gap4/edStructs.h
tagEditor.o: $(SRCROOT)/gap4/edUtils.h
tagEditor.o: $(SRCROOT)/gap4/fort.h
tagEditor.o: $(SRCROOT)/gap4/fortran.h
tagEditor.o: $(SRCROOT)/gap4/gap-dbstruct.h
tagEditor.o: $(SRCROOT)/gap4/gap-if.h
tagEditor.o: $(SRCROOT)/gap4/gap_globals.h
tagEditor.o: $(SRCROOT)/gap4/io-reg.h
tagEditor.o: $(SRCROOT)/gap4/io_handle.h
tagEditor.o: $(SRCROOT)/gap4/io_utils.h
tagEditor.o: $(SRCROOT)/gap4/list.h
tagEditor.o: $(SRCROOT)/gap4/primlib.h
tagEditor.o: $(SRCROOT)/gap4/qual.h
tagEditor.o: $(SRCROOT)/gap4/select.h
tagEditor.o: $(SRCROOT)/gap4/tagDefs.h
tagEditor.o: $(SRCROOT)/gap4/tagUtils.h
tagEditor.o: $(SRCROOT)/gap4/template.h
tagEditor.o: $(SRCROOT)/gap4/tkEdNames.h
tagEditor.o: $(SRCROOT)/gap4/tkEditor.h
tagEditor.o: $(SRCROOT)/gap4/tman_display.h
tagEditor.o: $(SRCROOT)/gap4/undo.h
tagEditor.o: $(SRCROOT)/primer3/src/dpal.h
tagEditor.o: $(SRCROOT)/primer3/src/primer3.h
tagEditor.o: $(SRCROOT)/tk_utils/cli_arg.h
tagEditor.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tagEditor.o: $(SRCROOT)/tk_utils/postscript.h
tagEditor.o: $(SRCROOT)/tk_utils/sheet.h
tagEditor.o: $(SRCROOT)/tk_utils/tcl_utils.h
tagEditor.o: $(SRCROOT)/tk_utils/tkSheet.h
tagEditor.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tagEditor.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tagEditor.o: $(SRCROOT)/tk_utils/tkTrace.h
tagU1.o: $(PWD)/staden_config.h
tagU1.o: $(SRCROOT)/Misc/array.h
tagU1.o: $(SRCROOT)/Misc/bitmap.h
tagU1.o: $(SRCROOT)/Misc/dstring.h
tagU1.o: $(SRCROOT)/Misc/misc.h
tagU1.o: $(SRCROOT)/Misc/os.h
tagU1.o: $(SRCROOT)/Misc/xalloc.h
tagU1.o: $(SRCROOT)/Misc/xerror.h
tagU1.o: $(SRCROOT)/g/freetree.h
tagU1.o: $(SRCROOT)/g/g-defs.h
tagU1.o: $(SRCROOT)/g/g-error.h
tagU1.o: $(SRCROOT)/g/g-filedefs.h
tagU1.o: $(SRCROOT)/g/g-os.h
tagU1.o: $(SRCROOT)/g/g-struct.h
tagU1.o: $(SRCROOT)/gap4/IO1.h
tagU1.o: $(SRCROOT)/gap4/active_tags.h
tagU1.o: $(SRCROOT)/gap4/contigEditor.h
tagU1.o: $(SRCROOT)/gap4/edStructs.h
tagU1.o: $(SRCROOT)/gap4/edUtils.h
tagU1.o: $(SRCROOT)/gap4/fort.h
tagU1.o: $(SRCROOT)/gap4/fortran.h
tagU1.o: $(SRCROOT)/gap4/gap-dbstruct.h
tagU1.o: $(SRCROOT)/gap4/gap-if.h
tagU1.o: $(SRCROOT)/gap4/io-reg.h
tagU1.o: $(SRCROOT)/gap4/io_handle.h
tagU1.o: $(SRCROOT)/gap4/io_utils.h
tagU1.o: $(SRCROOT)/gap4/list.h
tagU1.o: $(SRCROOT)/gap4/notedb.h
tagU1.o: $(SRCROOT)/gap4/primlib.h
tagU1.o: $(SRCROOT)/gap4/qual.h
tagU1.o: $(SRCROOT)/gap4/select.h
tagU1.o: $(SRCROOT)/gap4/tagDefs.h
tagU1.o: $(SRCROOT)/gap4/tagUtils.h
tagU1.o: $(SRCROOT)/gap4/tagdb.h
tagU1.o: $(SRCROOT)/gap4/template.h
tagU1.o: $(SRCROOT)/gap4/tkEdNames.h
tagU1.o: $(SRCROOT)/gap4/tkEditor.h
tagU1.o: $(SRCROOT)/gap4/tman_display.h
tagU1.o: $(SRCROOT)/gap4/undo.h
tagU1.o: $(SRCROOT)/primer3/src/dpal.h
tagU1.o: $(SRCROOT)/primer3/src/primer3.h
tagU1.o: $(SRCROOT)/seq_utils/dna_utils.h
tagU1.o: $(SRCROOT)/tk_utils/cli_arg.h
tagU1.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tagU1.o: $(SRCROOT)/tk_utils/postscript.h
tagU1.o: $(SRCROOT)/tk_utils/sheet.h
tagU1.o: $(SRCROOT)/tk_utils/tkSheet.h
tagU1.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tagU1.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tagU1.o: $(SRCROOT)/tk_utils/tkTrace.h
tagU2.o: $(PWD)/staden_config.h
tagU2.o: $(SRCROOT)/Misc/FtoC.h
tagU2.o: $(SRCROOT)/Misc/array.h
tagU2.o: $(SRCROOT)/Misc/bitmap.h
tagU2.o: $(SRCROOT)/Misc/dstring.h
tagU2.o: $(SRCROOT)/Misc/misc.h
tagU2.o: $(SRCROOT)/Misc/os.h
tagU2.o: $(SRCROOT)/Misc/xalloc.h
tagU2.o: $(SRCROOT)/Misc/xerror.h
tagU2.o: $(SRCROOT)/g/freetree.h
tagU2.o: $(SRCROOT)/g/g-defs.h
tagU2.o: $(SRCROOT)/g/g-error.h
tagU2.o: $(SRCROOT)/g/g-filedefs.h
tagU2.o: $(SRCROOT)/g/g-os.h
tagU2.o: $(SRCROOT)/g/g-struct.h
tagU2.o: $(SRCROOT)/gap4/IO1.h
tagU2.o: $(SRCROOT)/gap4/active_tags.h
tagU2.o: $(SRCROOT)/gap4/contigEditor.h
tagU2.o: $(SRCROOT)/gap4/dbcheck.h
tagU2.o: $(SRCROOT)/gap4/edStructs.h
tagU2.o: $(SRCROOT)/gap4/edUtils.h
tagU2.o: $(SRCROOT)/gap4/fort.h
tagU2.o: $(SRCROOT)/gap4/fortran.h
tagU2.o: $(SRCROOT)/gap4/gap-dbstruct.h
tagU2.o: $(SRCROOT)/gap4/gap-if.h
tagU2.o: $(SRCROOT)/gap4/gap_globals.h
tagU2.o: $(SRCROOT)/gap4/io-reg.h
tagU2.o: $(SRCROOT)/gap4/io_handle.h
tagU2.o: $(SRCROOT)/gap4/io_utils.h
tagU2.o: $(SRCROOT)/gap4/list.h
tagU2.o: $(SRCROOT)/gap4/primlib.h
tagU2.o: $(SRCROOT)/gap4/qual.h
tagU2.o: $(SRCROOT)/gap4/qualIO.h
tagU2.o: $(SRCROOT)/gap4/tagDefs.h
tagU2.o: $(SRCROOT)/gap4/tagUtils.h
tagU2.o: $(SRCROOT)/gap4/tagdb.h
tagU2.o: $(SRCROOT)/gap4/template.h
tagU2.o: $(SRCROOT)/gap4/tkEdNames.h
tagU2.o: $(SRCROOT)/gap4/tkEditor.h
tagU2.o: $(SRCROOT)/gap4/tman_display.h
tagU2.o: $(SRCROOT)/gap4/undo.h
tagU2.o: $(SRCROOT)/primer3/src/dpal.h
tagU2.o: $(SRCROOT)/primer3/src/primer3.h
tagU2.o: $(SRCROOT)/tk_utils/cli_arg.h
tagU2.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tagU2.o: $(SRCROOT)/tk_utils/postscript.h
tagU2.o: $(SRCROOT)/tk_utils/sheet.h
tagU2.o: $(SRCROOT)/tk_utils/tcl_utils.h
tagU2.o: $(SRCROOT)/tk_utils/text_output.h
tagU2.o: $(SRCROOT)/tk_utils/tkSheet.h
tagU2.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tagU2.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tagU2.o: $(SRCROOT)/tk_utils/tkTrace.h
tagdb.o: $(PWD)/staden_config.h
tagdb.o: $(SRCROOT)/Misc/misc.h
tagdb.o: $(SRCROOT)/Misc/os.h
tagdb.o: $(SRCROOT)/Misc/parse_db.h
tagdb.o: $(SRCROOT)/Misc/xalloc.h
tagdb.o: $(SRCROOT)/gap4/tagdb.h
tagdb.o: $(SRCROOT)/tk_utils/intrinsic_type.h
template.o: $(PWD)/staden_config.h
template.o: $(SRCROOT)/Misc/array.h
template.o: $(SRCROOT)/Misc/bitmap.h
template.o: $(SRCROOT)/Misc/dstring.h
template.o: $(SRCROOT)/Misc/misc.h
template.o: $(SRCROOT)/Misc/os.h
template.o: $(SRCROOT)/Misc/xalloc.h
template.o: $(SRCROOT)/Misc/xerror.h
template.o: $(SRCROOT)/g/freetree.h
template.o: $(SRCROOT)/g/g-defs.h
template.o: $(SRCROOT)/g/g-error.h
template.o: $(SRCROOT)/g/g-filedefs.h
template.o: $(SRCROOT)/g/g-os.h
template.o: $(SRCROOT)/g/g-struct.h
template.o: $(SRCROOT)/gap4/IO1.h
template.o: $(SRCROOT)/gap4/edStructs.h
template.o: $(SRCROOT)/gap4/edUtils.h
template.o: $(SRCROOT)/gap4/fort.h
template.o: $(SRCROOT)/gap4/fortran.h
template.o: $(SRCROOT)/gap4/gap-dbstruct.h
template.o: $(SRCROOT)/gap4/gap-if.h
template.o: $(SRCROOT)/gap4/gap_globals.h
template.o: $(SRCROOT)/gap4/io-reg.h
template.o: $(SRCROOT)/gap4/io_handle.h
template.o: $(SRCROOT)/gap4/io_utils.h
template.o: $(SRCROOT)/gap4/list.h
template.o: $(SRCROOT)/gap4/primlib.h
template.o: $(SRCROOT)/gap4/qual.h
template.o: $(SRCROOT)/gap4/tagDefs.h
template.o: $(SRCROOT)/gap4/tagUtils.h
template.o: $(SRCROOT)/gap4/template.h
template.o: $(SRCROOT)/gap4/tkEdNames.h
template.o: $(SRCROOT)/gap4/tkEditor.h
template.o: $(SRCROOT)/gap4/tman_display.h
template.o: $(SRCROOT)/gap4/undo.h
template.o: $(SRCROOT)/primer3/src/dpal.h
template.o: $(SRCROOT)/primer3/src/primer3.h
template.o: $(SRCROOT)/tk_utils/cli_arg.h
template.o: $(SRCROOT)/tk_utils/intrinsic_type.h
template.o: $(SRCROOT)/tk_utils/postscript.h
template.o: $(SRCROOT)/tk_utils/sheet.h
template.o: $(SRCROOT)/tk_utils/tcl_utils.h
template.o: $(SRCROOT)/tk_utils/tkSheet.h
template.o: $(SRCROOT)/tk_utils/tkSheet_common.h
template.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
template.o: $(SRCROOT)/tk_utils/tkTrace.h
template_display.o: $(PWD)/staden_config.h
template_display.o: $(SRCROOT)/Misc/FtoC.h
template_display.o: $(SRCROOT)/Misc/array.h
template_display.o: $(SRCROOT)/Misc/bitmap.h
template_display.o: $(SRCROOT)/Misc/dstring.h
template_display.o: $(SRCROOT)/Misc/misc.h
template_display.o: $(SRCROOT)/Misc/os.h
template_display.o: $(SRCROOT)/Misc/vlen.h
template_display.o: $(SRCROOT)/Misc/xalloc.h
template_display.o: $(SRCROOT)/Misc/xerror.h
template_display.o: $(SRCROOT)/g/freetree.h
template_display.o: $(SRCROOT)/g/g-defs.h
template_display.o: $(SRCROOT)/g/g-error.h
template_display.o: $(SRCROOT)/g/g-filedefs.h
template_display.o: $(SRCROOT)/g/g-os.h
template_display.o: $(SRCROOT)/g/g-struct.h
template_display.o: $(SRCROOT)/gap4/IO1.h
template_display.o: $(SRCROOT)/gap4/active_tags.h
template_display.o: $(SRCROOT)/gap4/contig_selector.h
template_display.o: $(SRCROOT)/gap4/cs-object.h
template_display.o: $(SRCROOT)/gap4/edStructs.h
template_display.o: $(SRCROOT)/gap4/edUtils.h
template_display.o: $(SRCROOT)/gap4/fort.h
template_display.o: $(SRCROOT)/gap4/fortran.h
template_display.o: $(SRCROOT)/gap4/gap-dbstruct.h
template_display.o: $(SRCROOT)/gap4/gap-if.h
template_display.o: $(SRCROOT)/gap4/gap_canvas_box.h
template_display.o: $(SRCROOT)/gap4/gap_globals.h
template_display.o: $(SRCROOT)/gap4/hash.h
template_display.o: $(SRCROOT)/gap4/io-reg.h
template_display.o: $(SRCROOT)/gap4/io_handle.h
template_display.o: $(SRCROOT)/gap4/io_utils.h
template_display.o: $(SRCROOT)/gap4/list.h
template_display.o: $(SRCROOT)/gap4/primlib.h
template_display.o: $(SRCROOT)/gap4/qual.h
template_display.o: $(SRCROOT)/gap4/ruler_display.h
template_display.o: $(SRCROOT)/gap4/tagDefs.h
template_display.o: $(SRCROOT)/gap4/tagUtils.h
template_display.o: $(SRCROOT)/gap4/tagdb.h
template_display.o: $(SRCROOT)/gap4/template.h
template_display.o: $(SRCROOT)/gap4/template_display.h
template_display.o: $(SRCROOT)/gap4/tkEdNames.h
template_display.o: $(SRCROOT)/gap4/tkEditor.h
template_display.o: $(SRCROOT)/gap4/tman_display.h
template_display.o: $(SRCROOT)/gap4/undo.h
template_display.o: $(SRCROOT)/primer3/src/dpal.h
template_display.o: $(SRCROOT)/primer3/src/primer3.h
template_display.o: $(SRCROOT)/tk_utils/canvas_box.h
template_display.o: $(SRCROOT)/tk_utils/cli_arg.h
template_display.o: $(SRCROOT)/tk_utils/intrinsic_type.h
template_display.o: $(SRCROOT)/tk_utils/postscript.h
template_display.o: $(SRCROOT)/tk_utils/ruler_tick.h
template_display.o: $(SRCROOT)/tk_utils/sheet.h
template_display.o: $(SRCROOT)/tk_utils/tclXkeylist.h
template_display.o: $(SRCROOT)/tk_utils/tcl_utils.h
template_display.o: $(SRCROOT)/tk_utils/text_output.h
template_display.o: $(SRCROOT)/tk_utils/tkSheet.h
template_display.o: $(SRCROOT)/tk_utils/tkSheet_common.h
template_display.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
template_display.o: $(SRCROOT)/tk_utils/tkTrace.h
text-io-reg.o: $(PWD)/staden_config.h
text-io-reg.o: $(SRCROOT)/Misc/array.h
text-io-reg.o: $(SRCROOT)/Misc/bitmap.h
text-io-reg.o: $(SRCROOT)/Misc/os.h
text-io-reg.o: $(SRCROOT)/Misc/xerror.h
text-io-reg.o: $(SRCROOT)/g/freetree.h
text-io-reg.o: $(SRCROOT)/g/g-defs.h
text-io-reg.o: $(SRCROOT)/g/g-error.h
text-io-reg.o: $(SRCROOT)/g/g-filedefs.h
text-io-reg.o: $(SRCROOT)/g/g-os.h
text-io-reg.o: $(SRCROOT)/g/g-struct.h
text-io-reg.o: $(SRCROOT)/gap4/IO1.h
text-io-reg.o: $(SRCROOT)/gap4/gap-dbstruct.h
text-io-reg.o: $(SRCROOT)/gap4/gap-if.h
text-io-reg.o: $(SRCROOT)/gap4/io_handle.h
text-io-reg.o: $(SRCROOT)/gap4/io_utils.h
tk-io-reg.o: $(PWD)/staden_config.h
tk-io-reg.o: $(SRCROOT)/Misc/array.h
tk-io-reg.o: $(SRCROOT)/Misc/bitmap.h
tk-io-reg.o: $(SRCROOT)/Misc/misc.h
tk-io-reg.o: $(SRCROOT)/Misc/os.h
tk-io-reg.o: $(SRCROOT)/Misc/xalloc.h
tk-io-reg.o: $(SRCROOT)/Misc/xerror.h
tk-io-reg.o: $(SRCROOT)/g/freetree.h
tk-io-reg.o: $(SRCROOT)/g/g-defs.h
tk-io-reg.o: $(SRCROOT)/g/g-error.h
tk-io-reg.o: $(SRCROOT)/g/g-filedefs.h
tk-io-reg.o: $(SRCROOT)/g/g-os.h
tk-io-reg.o: $(SRCROOT)/g/g-struct.h
tk-io-reg.o: $(SRCROOT)/gap4/IO1.h
tk-io-reg.o: $(SRCROOT)/gap4/consistency_display.h
tk-io-reg.o: $(SRCROOT)/gap4/contig_selector.h
tk-io-reg.o: $(SRCROOT)/gap4/cs-object.h
tk-io-reg.o: $(SRCROOT)/gap4/gap-dbstruct.h
tk-io-reg.o: $(SRCROOT)/gap4/gap-if.h
tk-io-reg.o: $(SRCROOT)/gap4/gap_cli_arg.h
tk-io-reg.o: $(SRCROOT)/gap4/gap_globals.h
tk-io-reg.o: $(SRCROOT)/gap4/hash.h
tk-io-reg.o: $(SRCROOT)/gap4/io-reg.h
tk-io-reg.o: $(SRCROOT)/gap4/io_handle.h
tk-io-reg.o: $(SRCROOT)/gap4/io_utils.h
tk-io-reg.o: $(SRCROOT)/gap4/list.h
tk-io-reg.o: $(SRCROOT)/gap4/newgap_cmds.h
tk-io-reg.o: $(SRCROOT)/gap4/newgap_structs.h
tk-io-reg.o: $(SRCROOT)/gap4/ruler_display.h
tk-io-reg.o: $(SRCROOT)/gap4/template.h
tk-io-reg.o: $(SRCROOT)/gap4/template_display.h
tk-io-reg.o: $(SRCROOT)/gap4/tk-io-reg.h
tk-io-reg.o: $(SRCROOT)/tk_utils/canvas_box.h
tk-io-reg.o: $(SRCROOT)/tk_utils/cli_arg.h
tk-io-reg.o: $(SRCROOT)/tk_utils/tclXkeylist.h
tk-io-reg.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkEdNames.o: $(PWD)/staden_config.h
tkEdNames.o: $(SRCROOT)/Misc/array.h
tkEdNames.o: $(SRCROOT)/Misc/bitmap.h
tkEdNames.o: $(SRCROOT)/Misc/dstring.h
tkEdNames.o: $(SRCROOT)/Misc/misc.h
tkEdNames.o: $(SRCROOT)/Misc/os.h
tkEdNames.o: $(SRCROOT)/Misc/xalloc.h
tkEdNames.o: $(SRCROOT)/Misc/xerror.h
tkEdNames.o: $(SRCROOT)/g/freetree.h
tkEdNames.o: $(SRCROOT)/g/g-defs.h
tkEdNames.o: $(SRCROOT)/g/g-error.h
tkEdNames.o: $(SRCROOT)/g/g-filedefs.h
tkEdNames.o: $(SRCROOT)/g/g-os.h
tkEdNames.o: $(SRCROOT)/g/g-struct.h
tkEdNames.o: $(SRCROOT)/gap4/IO1.h
tkEdNames.o: $(SRCROOT)/gap4/edStructs.h
tkEdNames.o: $(SRCROOT)/gap4/edUtils.h
tkEdNames.o: $(SRCROOT)/gap4/fort.h
tkEdNames.o: $(SRCROOT)/gap4/fortran.h
tkEdNames.o: $(SRCROOT)/gap4/gap-dbstruct.h
tkEdNames.o: $(SRCROOT)/gap4/gap-if.h
tkEdNames.o: $(SRCROOT)/gap4/io-reg.h
tkEdNames.o: $(SRCROOT)/gap4/io_handle.h
tkEdNames.o: $(SRCROOT)/gap4/io_utils.h
tkEdNames.o: $(SRCROOT)/gap4/list.h
tkEdNames.o: $(SRCROOT)/gap4/notes.h
tkEdNames.o: $(SRCROOT)/gap4/primlib.h
tkEdNames.o: $(SRCROOT)/gap4/qual.h
tkEdNames.o: $(SRCROOT)/gap4/tagDefs.h
tkEdNames.o: $(SRCROOT)/gap4/tagUtils.h
tkEdNames.o: $(SRCROOT)/gap4/template.h
tkEdNames.o: $(SRCROOT)/gap4/tkEdNames.h
tkEdNames.o: $(SRCROOT)/gap4/tkEditor.h
tkEdNames.o: $(SRCROOT)/gap4/tman_display.h
tkEdNames.o: $(SRCROOT)/gap4/undo.h
tkEdNames.o: $(SRCROOT)/primer3/src/dpal.h
tkEdNames.o: $(SRCROOT)/primer3/src/primer3.h
tkEdNames.o: $(SRCROOT)/tk_utils/cli_arg.h
tkEdNames.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tkEdNames.o: $(SRCROOT)/tk_utils/postscript.h
tkEdNames.o: $(SRCROOT)/tk_utils/sheet.h
tkEdNames.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkEdNames.o: $(SRCROOT)/tk_utils/tkSheet.h
tkEdNames.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tkEdNames.o: $(SRCROOT)/tk_utils/tkSheet_config.h
tkEdNames.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tkEdNames.o: $(SRCROOT)/tk_utils/tkTrace.h
tkEdNames.o: $(SRCROOT)/tk_utils/tk_defs.h
tkEdUtils.o: $(PWD)/staden_config.h
tkEdUtils.o: $(SRCROOT)/Misc/array.h
tkEdUtils.o: $(SRCROOT)/Misc/bitmap.h
tkEdUtils.o: $(SRCROOT)/Misc/dstring.h
tkEdUtils.o: $(SRCROOT)/Misc/misc.h
tkEdUtils.o: $(SRCROOT)/Misc/os.h
tkEdUtils.o: $(SRCROOT)/Misc/xalloc.h
tkEdUtils.o: $(SRCROOT)/Misc/xerror.h
tkEdUtils.o: $(SRCROOT)/g/freetree.h
tkEdUtils.o: $(SRCROOT)/g/g-defs.h
tkEdUtils.o: $(SRCROOT)/g/g-error.h
tkEdUtils.o: $(SRCROOT)/g/g-filedefs.h
tkEdUtils.o: $(SRCROOT)/g/g-os.h
tkEdUtils.o: $(SRCROOT)/g/g-struct.h
tkEdUtils.o: $(SRCROOT)/gap4/IO1.h
tkEdUtils.o: $(SRCROOT)/gap4/edStructs.h
tkEdUtils.o: $(SRCROOT)/gap4/edUtils.h
tkEdUtils.o: $(SRCROOT)/gap4/fort.h
tkEdUtils.o: $(SRCROOT)/gap4/fortran.h
tkEdUtils.o: $(SRCROOT)/gap4/gap-dbstruct.h
tkEdUtils.o: $(SRCROOT)/gap4/gap-if.h
tkEdUtils.o: $(SRCROOT)/gap4/gap_globals.h
tkEdUtils.o: $(SRCROOT)/gap4/io-reg.h
tkEdUtils.o: $(SRCROOT)/gap4/io_handle.h
tkEdUtils.o: $(SRCROOT)/gap4/io_utils.h
tkEdUtils.o: $(SRCROOT)/gap4/list.h
tkEdUtils.o: $(SRCROOT)/gap4/notedb.h
tkEdUtils.o: $(SRCROOT)/gap4/primlib.h
tkEdUtils.o: $(SRCROOT)/gap4/qual.h
tkEdUtils.o: $(SRCROOT)/gap4/tagDefs.h
tkEdUtils.o: $(SRCROOT)/gap4/tagUtils.h
tkEdUtils.o: $(SRCROOT)/gap4/template.h
tkEdUtils.o: $(SRCROOT)/gap4/tkEdNames.h
tkEdUtils.o: $(SRCROOT)/gap4/tkEditor.h
tkEdUtils.o: $(SRCROOT)/gap4/tman_display.h
tkEdUtils.o: $(SRCROOT)/gap4/tman_interface.h
tkEdUtils.o: $(SRCROOT)/gap4/undo.h
tkEdUtils.o: $(SRCROOT)/primer3/src/dpal.h
tkEdUtils.o: $(SRCROOT)/primer3/src/primer3.h
tkEdUtils.o: $(SRCROOT)/seq_utils/dna_utils.h
tkEdUtils.o: $(SRCROOT)/seq_utils/genetic_code.h
tkEdUtils.o: $(SRCROOT)/tk_utils/cli_arg.h
tkEdUtils.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tkEdUtils.o: $(SRCROOT)/tk_utils/postscript.h
tkEdUtils.o: $(SRCROOT)/tk_utils/sheet.h
tkEdUtils.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkEdUtils.o: $(SRCROOT)/tk_utils/tkSheet.h
tkEdUtils.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tkEdUtils.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tkEdUtils.o: $(SRCROOT)/tk_utils/tkTrace.h
tkEditor.o: $(PWD)/staden_config.h
tkEditor.o: $(SRCROOT)/Misc/array.h
tkEditor.o: $(SRCROOT)/Misc/bitmap.h
tkEditor.o: $(SRCROOT)/Misc/dstring.h
tkEditor.o: $(SRCROOT)/Misc/misc.h
tkEditor.o: $(SRCROOT)/Misc/os.h
tkEditor.o: $(SRCROOT)/Misc/xalloc.h
tkEditor.o: $(SRCROOT)/Misc/xerror.h
tkEditor.o: $(SRCROOT)/g/freetree.h
tkEditor.o: $(SRCROOT)/g/g-defs.h
tkEditor.o: $(SRCROOT)/g/g-error.h
tkEditor.o: $(SRCROOT)/g/g-filedefs.h
tkEditor.o: $(SRCROOT)/g/g-os.h
tkEditor.o: $(SRCROOT)/g/g-struct.h
tkEditor.o: $(SRCROOT)/gap4/IO1.h
tkEditor.o: $(SRCROOT)/gap4/contigEditor.h
tkEditor.o: $(SRCROOT)/gap4/edCommands.h
tkEditor.o: $(SRCROOT)/gap4/edStructs.h
tkEditor.o: $(SRCROOT)/gap4/edUtils.h
tkEditor.o: $(SRCROOT)/gap4/fort.h
tkEditor.o: $(SRCROOT)/gap4/fortran.h
tkEditor.o: $(SRCROOT)/gap4/gap-dbstruct.h
tkEditor.o: $(SRCROOT)/gap4/gap-if.h
tkEditor.o: $(SRCROOT)/gap4/gap_globals.h
tkEditor.o: $(SRCROOT)/gap4/io-reg.h
tkEditor.o: $(SRCROOT)/gap4/io_handle.h
tkEditor.o: $(SRCROOT)/gap4/io_utils.h
tkEditor.o: $(SRCROOT)/gap4/list.h
tkEditor.o: $(SRCROOT)/gap4/oligo.h
tkEditor.o: $(SRCROOT)/gap4/primlib.h
tkEditor.o: $(SRCROOT)/gap4/qual.h
tkEditor.o: $(SRCROOT)/gap4/tagDefs.h
tkEditor.o: $(SRCROOT)/gap4/tagUtils.h
tkEditor.o: $(SRCROOT)/gap4/template.h
tkEditor.o: $(SRCROOT)/gap4/tkEdNames.h
tkEditor.o: $(SRCROOT)/gap4/tkEditor.h
tkEditor.o: $(SRCROOT)/gap4/tman_display.h
tkEditor.o: $(SRCROOT)/gap4/tman_interface.h
tkEditor.o: $(SRCROOT)/gap4/undo.h
tkEditor.o: $(SRCROOT)/primer3/src/dpal.h
tkEditor.o: $(SRCROOT)/primer3/src/primer3.h
tkEditor.o: $(SRCROOT)/tk_utils/cli_arg.h
tkEditor.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tkEditor.o: $(SRCROOT)/tk_utils/postscript.h
tkEditor.o: $(SRCROOT)/tk_utils/sheet.h
tkEditor.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkEditor.o: $(SRCROOT)/tk_utils/tkSheet.h
tkEditor.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tkEditor.o: $(SRCROOT)/tk_utils/tkSheet_config.h
tkEditor.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tkEditor.o: $(SRCROOT)/tk_utils/tkTrace.h
tkEditor.o: $(SRCROOT)/tk_utils/tk_defs.h
tman_cons.o: $(PWD)/staden_config.h
tman_cons.o: $(SRCROOT)/Misc/array.h
tman_cons.o: $(SRCROOT)/Misc/bitmap.h
tman_cons.o: $(SRCROOT)/Misc/dstring.h
tman_cons.o: $(SRCROOT)/Misc/misc.h
tman_cons.o: $(SRCROOT)/Misc/os.h
tman_cons.o: $(SRCROOT)/Misc/xalloc.h
tman_cons.o: $(SRCROOT)/Misc/xerror.h
tman_cons.o: $(SRCROOT)/g/freetree.h
tman_cons.o: $(SRCROOT)/g/g-defs.h
tman_cons.o: $(SRCROOT)/g/g-error.h
tman_cons.o: $(SRCROOT)/g/g-filedefs.h
tman_cons.o: $(SRCROOT)/g/g-os.h
tman_cons.o: $(SRCROOT)/g/g-struct.h
tman_cons.o: $(SRCROOT)/gap4/IO1.h
tman_cons.o: $(SRCROOT)/gap4/edStructs.h
tman_cons.o: $(SRCROOT)/gap4/edUtils.h
tman_cons.o: $(SRCROOT)/gap4/fort.h
tman_cons.o: $(SRCROOT)/gap4/fortran.h
tman_cons.o: $(SRCROOT)/gap4/gap-dbstruct.h
tman_cons.o: $(SRCROOT)/gap4/gap-if.h
tman_cons.o: $(SRCROOT)/gap4/gap_globals.h
tman_cons.o: $(SRCROOT)/gap4/io-reg.h
tman_cons.o: $(SRCROOT)/gap4/io_handle.h
tman_cons.o: $(SRCROOT)/gap4/io_utils.h
tman_cons.o: $(SRCROOT)/gap4/list.h
tman_cons.o: $(SRCROOT)/gap4/primlib.h
tman_cons.o: $(SRCROOT)/gap4/qual.h
tman_cons.o: $(SRCROOT)/gap4/tagDefs.h
tman_cons.o: $(SRCROOT)/gap4/tagUtils.h
tman_cons.o: $(SRCROOT)/gap4/template.h
tman_cons.o: $(SRCROOT)/gap4/tkEdNames.h
tman_cons.o: $(SRCROOT)/gap4/tkEditor.h
tman_cons.o: $(SRCROOT)/gap4/tman_display.h
tman_cons.o: $(SRCROOT)/gap4/tman_interface.h
tman_cons.o: $(SRCROOT)/gap4/undo.h
tman_cons.o: $(SRCROOT)/primer3/src/dpal.h
tman_cons.o: $(SRCROOT)/primer3/src/primer3.h
tman_cons.o: $(SRCROOT)/tk_utils/cli_arg.h
tman_cons.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tman_cons.o: $(SRCROOT)/tk_utils/postscript.h
tman_cons.o: $(SRCROOT)/tk_utils/sheet.h
tman_cons.o: $(SRCROOT)/tk_utils/tclXkeylist.h
tman_cons.o: $(SRCROOT)/tk_utils/tcl_utils.h
tman_cons.o: $(SRCROOT)/tk_utils/tkSheet.h
tman_cons.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tman_cons.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tman_cons.o: $(SRCROOT)/tk_utils/tkTrace.h
tman_cons.o: $(SRCROOT)/tk_utils/tkTraceIO.h
tman_diff.o: $(PWD)/staden_config.h
tman_diff.o: $(SRCROOT)/Misc/array.h
tman_diff.o: $(SRCROOT)/Misc/bitmap.h
tman_diff.o: $(SRCROOT)/Misc/dstring.h
tman_diff.o: $(SRCROOT)/Misc/misc.h
tman_diff.o: $(SRCROOT)/Misc/os.h
tman_diff.o: $(SRCROOT)/Misc/xalloc.h
tman_diff.o: $(SRCROOT)/Misc/xerror.h
tman_diff.o: $(SRCROOT)/g/freetree.h
tman_diff.o: $(SRCROOT)/g/g-defs.h
tman_diff.o: $(SRCROOT)/g/g-error.h
tman_diff.o: $(SRCROOT)/g/g-filedefs.h
tman_diff.o: $(SRCROOT)/g/g-os.h
tman_diff.o: $(SRCROOT)/g/g-struct.h
tman_diff.o: $(SRCROOT)/gap4/IO1.h
tman_diff.o: $(SRCROOT)/gap4/edStructs.h
tman_diff.o: $(SRCROOT)/gap4/edUtils.h
tman_diff.o: $(SRCROOT)/gap4/fort.h
tman_diff.o: $(SRCROOT)/gap4/fortran.h
tman_diff.o: $(SRCROOT)/gap4/gap-dbstruct.h
tman_diff.o: $(SRCROOT)/gap4/gap-if.h
tman_diff.o: $(SRCROOT)/gap4/gap_globals.h
tman_diff.o: $(SRCROOT)/gap4/io-reg.h
tman_diff.o: $(SRCROOT)/gap4/io_handle.h
tman_diff.o: $(SRCROOT)/gap4/io_utils.h
tman_diff.o: $(SRCROOT)/gap4/list.h
tman_diff.o: $(SRCROOT)/gap4/primlib.h
tman_diff.o: $(SRCROOT)/gap4/qual.h
tman_diff.o: $(SRCROOT)/gap4/tagDefs.h
tman_diff.o: $(SRCROOT)/gap4/tagUtils.h
tman_diff.o: $(SRCROOT)/gap4/template.h
tman_diff.o: $(SRCROOT)/gap4/tkEdNames.h
tman_diff.o: $(SRCROOT)/gap4/tkEditor.h
tman_diff.o: $(SRCROOT)/gap4/tman_display.h
tman_diff.o: $(SRCROOT)/gap4/tman_interface.h
tman_diff.o: $(SRCROOT)/gap4/undo.h
tman_diff.o: $(SRCROOT)/mutlib/mutlib.h
tman_diff.o: $(SRCROOT)/mutlib/staden.h
tman_diff.o: $(SRCROOT)/primer3/src/dpal.h
tman_diff.o: $(SRCROOT)/primer3/src/primer3.h
tman_diff.o: $(SRCROOT)/seq_utils/dna_utils.h
tman_diff.o: $(SRCROOT)/tk_utils/cli_arg.h
tman_diff.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tman_diff.o: $(SRCROOT)/tk_utils/postscript.h
tman_diff.o: $(SRCROOT)/tk_utils/sheet.h
tman_diff.o: $(SRCROOT)/tk_utils/tclXkeylist.h
tman_diff.o: $(SRCROOT)/tk_utils/tcl_utils.h
tman_diff.o: $(SRCROOT)/tk_utils/tkSheet.h
tman_diff.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tman_diff.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tman_diff.o: $(SRCROOT)/tk_utils/tkTrace.h
tman_diff.o: $(SRCROOT)/tk_utils/tkTraceIO.h
tman_display.o: $(PWD)/staden_config.h
tman_display.o: $(SRCROOT)/Misc/array.h
tman_display.o: $(SRCROOT)/Misc/bitmap.h
tman_display.o: $(SRCROOT)/Misc/dstring.h
tman_display.o: $(SRCROOT)/Misc/misc.h
tman_display.o: $(SRCROOT)/Misc/os.h
tman_display.o: $(SRCROOT)/Misc/xalloc.h
tman_display.o: $(SRCROOT)/Misc/xerror.h
tman_display.o: $(SRCROOT)/g/freetree.h
tman_display.o: $(SRCROOT)/g/g-defs.h
tman_display.o: $(SRCROOT)/g/g-error.h
tman_display.o: $(SRCROOT)/g/g-filedefs.h
tman_display.o: $(SRCROOT)/g/g-os.h
tman_display.o: $(SRCROOT)/g/g-struct.h
tman_display.o: $(SRCROOT)/gap4/IO1.h
tman_display.o: $(SRCROOT)/gap4/edStructs.h
tman_display.o: $(SRCROOT)/gap4/edUtils.h
tman_display.o: $(SRCROOT)/gap4/fort.h
tman_display.o: $(SRCROOT)/gap4/fortran.h
tman_display.o: $(SRCROOT)/gap4/gap-dbstruct.h
tman_display.o: $(SRCROOT)/gap4/gap-if.h
tman_display.o: $(SRCROOT)/gap4/gap_globals.h
tman_display.o: $(SRCROOT)/gap4/io-reg.h
tman_display.o: $(SRCROOT)/gap4/io_handle.h
tman_display.o: $(SRCROOT)/gap4/io_utils.h
tman_display.o: $(SRCROOT)/gap4/list.h
tman_display.o: $(SRCROOT)/gap4/primlib.h
tman_display.o: $(SRCROOT)/gap4/qual.h
tman_display.o: $(SRCROOT)/gap4/tagDefs.h
tman_display.o: $(SRCROOT)/gap4/tagUtils.h
tman_display.o: $(SRCROOT)/gap4/template.h
tman_display.o: $(SRCROOT)/gap4/tkEdNames.h
tman_display.o: $(SRCROOT)/gap4/tkEditor.h
tman_display.o: $(SRCROOT)/gap4/tman_display.h
tman_display.o: $(SRCROOT)/gap4/tman_interface.h
tman_display.o: $(SRCROOT)/gap4/undo.h
tman_display.o: $(SRCROOT)/primer3/src/dpal.h
tman_display.o: $(SRCROOT)/primer3/src/primer3.h
tman_display.o: $(SRCROOT)/tk_utils/cli_arg.h
tman_display.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tman_display.o: $(SRCROOT)/tk_utils/postscript.h
tman_display.o: $(SRCROOT)/tk_utils/sheet.h
tman_display.o: $(SRCROOT)/tk_utils/tclXkeylist.h
tman_display.o: $(SRCROOT)/tk_utils/tcl_utils.h
tman_display.o: $(SRCROOT)/tk_utils/tkSheet.h
tman_display.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tman_display.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tman_display.o: $(SRCROOT)/tk_utils/tkTrace.h
tman_interface.o: $(PWD)/staden_config.h
tman_interface.o: $(SRCROOT)/Misc/array.h
tman_interface.o: $(SRCROOT)/Misc/bitmap.h
tman_interface.o: $(SRCROOT)/Misc/dstring.h
tman_interface.o: $(SRCROOT)/Misc/misc.h
tman_interface.o: $(SRCROOT)/Misc/os.h
tman_interface.o: $(SRCROOT)/Misc/xalloc.h
tman_interface.o: $(SRCROOT)/Misc/xerror.h
tman_interface.o: $(SRCROOT)/g/freetree.h
tman_interface.o: $(SRCROOT)/g/g-defs.h
tman_interface.o: $(SRCROOT)/g/g-error.h
tman_interface.o: $(SRCROOT)/g/g-filedefs.h
tman_interface.o: $(SRCROOT)/g/g-os.h
tman_interface.o: $(SRCROOT)/g/g-struct.h
tman_interface.o: $(SRCROOT)/gap4/IO1.h
tman_interface.o: $(SRCROOT)/gap4/contigEditor.h
tman_interface.o: $(SRCROOT)/gap4/edStructs.h
tman_interface.o: $(SRCROOT)/gap4/edUtils.h
tman_interface.o: $(SRCROOT)/gap4/fort.h
tman_interface.o: $(SRCROOT)/gap4/fortran.h
tman_interface.o: $(SRCROOT)/gap4/gap-dbstruct.h
tman_interface.o: $(SRCROOT)/gap4/gap-if.h
tman_interface.o: $(SRCROOT)/gap4/io-reg.h
tman_interface.o: $(SRCROOT)/gap4/io_handle.h
tman_interface.o: $(SRCROOT)/gap4/io_utils.h
tman_interface.o: $(SRCROOT)/gap4/list.h
tman_interface.o: $(SRCROOT)/gap4/primlib.h
tman_interface.o: $(SRCROOT)/gap4/qual.h
tman_interface.o: $(SRCROOT)/gap4/tagDefs.h
tman_interface.o: $(SRCROOT)/gap4/tagUtils.h
tman_interface.o: $(SRCROOT)/gap4/template.h
tman_interface.o: $(SRCROOT)/gap4/tkEdNames.h
tman_interface.o: $(SRCROOT)/gap4/tkEditor.h
tman_interface.o: $(SRCROOT)/gap4/tman_display.h
tman_interface.o: $(SRCROOT)/gap4/tman_interface.h
tman_interface.o: $(SRCROOT)/gap4/undo.h
tman_interface.o: $(SRCROOT)/primer3/src/dpal.h
tman_interface.o: $(SRCROOT)/primer3/src/primer3.h
tman_interface.o: $(SRCROOT)/tk_utils/cli_arg.h
tman_interface.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tman_interface.o: $(SRCROOT)/tk_utils/postscript.h
tman_interface.o: $(SRCROOT)/tk_utils/sheet.h
tman_interface.o: $(SRCROOT)/tk_utils/tkSheet.h
tman_interface.o: $(SRCROOT)/tk_utils/tkSheet_common.h
tman_interface.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
tman_interface.o: $(SRCROOT)/tk_utils/tkTrace.h
undo.o: $(PWD)/staden_config.h
undo.o: $(SRCROOT)/Misc/array.h
undo.o: $(SRCROOT)/Misc/bitmap.h
undo.o: $(SRCROOT)/Misc/dstring.h
undo.o: $(SRCROOT)/Misc/misc.h
undo.o: $(SRCROOT)/Misc/os.h
undo.o: $(SRCROOT)/Misc/xalloc.h
undo.o: $(SRCROOT)/Misc/xerror.h
undo.o: $(SRCROOT)/g/freetree.h
undo.o: $(SRCROOT)/g/g-defs.h
undo.o: $(SRCROOT)/g/g-error.h
undo.o: $(SRCROOT)/g/g-filedefs.h
undo.o: $(SRCROOT)/g/g-os.h
undo.o: $(SRCROOT)/g/g-struct.h
undo.o: $(SRCROOT)/gap4/IO1.h
undo.o: $(SRCROOT)/gap4/contigEditor.h
undo.o: $(SRCROOT)/gap4/edStructs.h
undo.o: $(SRCROOT)/gap4/edUtils.h
undo.o: $(SRCROOT)/gap4/extend.h
undo.o: $(SRCROOT)/gap4/fort.h
undo.o: $(SRCROOT)/gap4/fortran.h
undo.o: $(SRCROOT)/gap4/gap-dbstruct.h
undo.o: $(SRCROOT)/gap4/gap-if.h
undo.o: $(SRCROOT)/gap4/io-reg.h
undo.o: $(SRCROOT)/gap4/io_handle.h
undo.o: $(SRCROOT)/gap4/io_utils.h
undo.o: $(SRCROOT)/gap4/list.h
undo.o: $(SRCROOT)/gap4/primlib.h
undo.o: $(SRCROOT)/gap4/qual.h
undo.o: $(SRCROOT)/gap4/tagDefs.h
undo.o: $(SRCROOT)/gap4/tagUtils.h
undo.o: $(SRCROOT)/gap4/template.h
undo.o: $(SRCROOT)/gap4/tkEdNames.h
undo.o: $(SRCROOT)/gap4/tkEditor.h
undo.o: $(SRCROOT)/gap4/tman_display.h
undo.o: $(SRCROOT)/gap4/undo.h
undo.o: $(SRCROOT)/primer3/src/dpal.h
undo.o: $(SRCROOT)/primer3/src/primer3.h
undo.o: $(SRCROOT)/tk_utils/cli_arg.h
undo.o: $(SRCROOT)/tk_utils/intrinsic_type.h
undo.o: $(SRCROOT)/tk_utils/postscript.h
undo.o: $(SRCROOT)/tk_utils/sheet.h
undo.o: $(SRCROOT)/tk_utils/text_output.h
undo.o: $(SRCROOT)/tk_utils/tkSheet.h
undo.o: $(SRCROOT)/tk_utils/tkSheet_common.h
undo.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
undo.o: $(SRCROOT)/tk_utils/tkTrace.h
vseqs.o: $(PWD)/staden_config.h
vseqs.o: $(SRCROOT)/Misc/array.h
vseqs.o: $(SRCROOT)/Misc/bitmap.h
vseqs.o: $(SRCROOT)/Misc/misc.h
vseqs.o: $(SRCROOT)/Misc/os.h
vseqs.o: $(SRCROOT)/Misc/xalloc.h
vseqs.o: $(SRCROOT)/Misc/xerror.h
vseqs.o: $(SRCROOT)/g/freetree.h
vseqs.o: $(SRCROOT)/g/g-defs.h
vseqs.o: $(SRCROOT)/g/g-error.h
vseqs.o: $(SRCROOT)/g/g-filedefs.h
vseqs.o: $(SRCROOT)/g/g-os.h
vseqs.o: $(SRCROOT)/g/g-struct.h
vseqs.o: $(SRCROOT)/gap4/IO1.h
vseqs.o: $(SRCROOT)/gap4/gap-dbstruct.h
vseqs.o: $(SRCROOT)/gap4/gap-if.h
vseqs.o: $(SRCROOT)/gap4/io_handle.h
vseqs.o: $(SRCROOT)/gap4/io_utils.h
vseqs.o: $(SRCROOT)/gap4/qual.h
vseqs.o: $(SRCROOT)/gap4/vseqs.h
vseqs.o: $(SRCROOT)/tk_utils/text_output.h
