LIBS = gap5
# tg_view.bin deprecated
PROGS = tg_index.bin
PROGLIBS= $(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX)

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

INCLUDES_E += $(MISC_INC) $(TK_INC) \
	      $(IOLIB_INC) $(TKUTILS_INC) $(SEQUTILS_INC) \
	      $(P3_INC) $(CURSES_INC) $(ZLIB_INC) $(LZMA_INC)
	      
CFLAGS += $(SHLIB_CFLAGS)
FFLAGS += $(SHLIB_FFLAGS)

# For gprof profiling
#CFLAGS   += -pg
#CLDFLAGS += -pg

# For debugging g-alloc
#CFLAGS += -DVALGRIND
#CFLAGS += -D_FORTIFY_SOURCE=2 -fstack-protector

GAP5_LIB=-lgap5

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

# "g" library components, originally from Gap4's src/g dir
GOBJS = \
	g-files.o \
	g-db.o \
	g-struct.o \
	g-error.o \
	g-alloc.o \
	g-io.o \
	g-connect.o \
	g-request.o

# "tg" layer. This is low level I/O - caching, formatting, etc.
TG_IO = \
	tg_iface_g.o \
	b+tree2.o \
	hache_table.o \
	tg_gio.o \
	tg_cache.o \
	tg_contig.o \
	tg_sequence.o \
	tg_track.o \
	tg_bin.o \
	tg_utils.o \
	tg_register.o \
	tg_tracks.o \
	tg_anno.o \
	tg_library.o \
	tg_scaffold.o \
	tg_check.o \
        actf.o \
	gap_cli_arg.o \
	tg_tcl.o

CEDITOR = \
	editor_view.o \
	editor_join.o \
	editor_search.o \
	tkEdNames.o\
	tkEditor.o\
	tman_interface.o\
	tman_display.o\
	primlib.o\
	editor_oligo.o

CEDITOR_SCRAP=\
	contigEditor.o\
	tkEditor.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\
	join.o\
	oligo.o

TG_INDEX=\
	tg_index_common.o\
	baf.o \
	maq.o \
	maqmap.o \
	sam_index.o \
	sam_pileup.o \
	ace.o \
	caf.o \
	fasta.o \
	afg.o \
	depad_seq_tree.o

GAP5=\
	newgap5_cmds.o \
	gap4_compat.o \
	gap_hash.o\
	hash_lib.o \
	qual.o \
	qualIO.o \
	gap_globals.o \
	tagdb.o\
	init.o \
	notedb.o\
	active_tags.o\
	list_proc.o\
	gap-error.o\
	stack_dump.o\
	tk-io-reg.o\
	tkAppInit.o \
	consen.o\
	contig_selector.o\
	cs-object.o\
	find_repeats.o\
	readpair.o\
	check_assembly.o\
	consensus.o\
	read_depth.o\
	gap_range.o \
	template_display.o \
	depth_track.o \
	template_draw.o \
	quality_plot.o\
	tag_plot.o \
	fij.o\
	do_fij.o\
	break_contig.o \
	dis_readings.o \
	export_contigs.o \
	export_snps.o \
	find_oligo.o \
	import_gff.o \
	shuffle_pads.o \
	str_finder.o \
	restriction_enzymes.o \
	gap_canvas_box.o \
	contig_extend.o \
	auto_break.o \
	find_haplotypes.o \
	interval_tree.o \
	$(GOBJS) \
	$(TG_IO) \
	$(CEDITOR) \
	$(TG_INDEX)

GAP5_LIBS=\
	$(IOLIB_LIB) \
	$(TKUTILS_LIB) \
	$(ZLIB_LIB) \
	$(LZMA_LIB) \
	$(TK_LIB) \
	$(SEQUTILS_LIB) \
	$(P3_LIB) \
	$(MISC_LIB)

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

$(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX): $(GAP5) $(DEF_FILE) $(L)/.dir
	$(SHLIB_LD) $(SHLIB_LDFLAGS) $(SHLIB_OUTFLAG)$@ $(SHLIB_SONAME) $(LINK_PATHFLAG)$(L) $(GAP5) $(GAP5_LIBS) $(SHLIB_DEP)


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


TG_IND_OBJ = \
	$(TG_IO) \
	tg_index.o \
#	mapass2.o

TGILIBS = \
	$(GAP5_LIB) \
	$(GAP5_LIBS)

tg_index.bin: $(TG_IND_OBJ) $(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX)
	$(CLD) $(LDEXEFLAG)$@$(EXE_SUFFIX) $(TG_IND_OBJ) $(TGILIBS) $(LIBSC)

TG_VIEW_OBJ = \
	$(TG_IO) \
	tg_view.o

TGVLIBS = \
	$(TGILIBS) \
	$(CURSES_LIB)

tg_view.bin: $(TG_VIEW_OBJ) $(L)/$(SHLIB_PREFIX)$(LIBS)$(SHLIB_SUFFIX)
	$(CLD) $(LDEXEFLAG)$@$(EXE_SUFFIX) $(TG_VIEW_OBJ) $(TGVLIBS) $(LIBSC)

DEPEND_OBJ = $(GAP5) $(TG_IND_OBJ) $(TG_VIEW_OBJ)

install:
	$(INSTALL) gap5 $(INSTALLBIN)
	-mkdir $(INSTALLTCL)/gap5
	cp $(S)/*.tcl $(S)/tclIndex $(INSTALLTCL)/gap5
	cp $(S)/../gap4/acd2tag.tcl $(INSTALLTCL)/gap5
	cp $(S)/gap5rc $(S)/gap5rc_menu_full $(INSTALLETC)
	cp $(PROGLIBS) $(INSTALLLIB)
	@#cp tg_view.bin $(INSTALLBIN)
	cp tg_index.bin $(INSTALLBIN)
	$(INSTALL) tg_index $(INSTALLBIN)
	@#$(INSTALL) tg_view $(INSTALLBIN)
	$(INSTALL) gap5_cmd $(INSTALLBIN)

distsrc: distsrc_dirs
	cp $(S)/*.[ch] $(S)/*.tcl $(S)/*.in $(S)/tclIndex $(S)/Makefile \
	   $(S)/gap5rc $(S)/gap5rc_menu_full $(DIRNAME)

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

ace.o: $(PWD)/staden_config.h
ace.o: $(SRCROOT)/Misc/array.h
ace.o: $(SRCROOT)/Misc/misc.h
ace.o: $(SRCROOT)/Misc/os.h
ace.o: $(SRCROOT)/Misc/string_alloc.h
ace.o: $(SRCROOT)/Misc/tree.h
ace.o: $(SRCROOT)/Misc/xalloc.h
ace.o: $(SRCROOT)/Misc/xerror.h
ace.o: $(SRCROOT)/gap5/ace.h
ace.o: $(SRCROOT)/gap5/b+tree2.h
ace.o: $(SRCROOT)/gap5/g-alloc.h
ace.o: $(SRCROOT)/gap5/g-connect.h
ace.o: $(SRCROOT)/gap5/g-db.h
ace.o: $(SRCROOT)/gap5/g-defs.h
ace.o: $(SRCROOT)/gap5/g-error.h
ace.o: $(SRCROOT)/gap5/g-filedefs.h
ace.o: $(SRCROOT)/gap5/g-io.h
ace.o: $(SRCROOT)/gap5/g-misc.h
ace.o: $(SRCROOT)/gap5/g-os.h
ace.o: $(SRCROOT)/gap5/g-request.h
ace.o: $(SRCROOT)/gap5/g-struct.h
ace.o: $(SRCROOT)/gap5/g.h
ace.o: $(SRCROOT)/gap5/hache_table.h
ace.o: $(SRCROOT)/gap5/io_utils.h
ace.o: $(SRCROOT)/gap5/tg_anno.h
ace.o: $(SRCROOT)/gap5/tg_bin.h
ace.o: $(SRCROOT)/gap5/tg_cache_item.h
ace.o: $(SRCROOT)/gap5/tg_contig.h
ace.o: $(SRCROOT)/gap5/tg_gio.h
ace.o: $(SRCROOT)/gap5/tg_iface.h
ace.o: $(SRCROOT)/gap5/tg_index.h
ace.o: $(SRCROOT)/gap5/tg_index_common.h
ace.o: $(SRCROOT)/gap5/tg_library.h
ace.o: $(SRCROOT)/gap5/tg_register.h
ace.o: $(SRCROOT)/gap5/tg_scaffold.h
ace.o: $(SRCROOT)/gap5/tg_sequence.h
ace.o: $(SRCROOT)/gap5/tg_struct.h
ace.o: $(SRCROOT)/gap5/tg_tcl.h
ace.o: $(SRCROOT)/gap5/tg_track.h
ace.o: $(SRCROOT)/gap5/tg_utils.h
ace.o: $(SRCROOT)/seq_utils/dna_utils.h
actf.o: $(PWD)/staden_config.h
actf.o: $(SRCROOT)/Misc/array.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)/gap5/actf.h
actf.o: $(SRCROOT)/gap5/g-alloc.h
actf.o: $(SRCROOT)/gap5/g-filedefs.h
actf.o: $(SRCROOT)/gap5/g-files.h
actf.o: $(SRCROOT)/gap5/g-os.h
actf.o: $(SRCROOT)/gap5/g-struct.h
actf.o: $(SRCROOT)/gap5/hache_table.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/misc.h
active_tags.o: $(SRCROOT)/Misc/os.h
active_tags.o: $(SRCROOT)/Misc/tree.h
active_tags.o: $(SRCROOT)/Misc/xalloc.h
active_tags.o: $(SRCROOT)/Misc/xerror.h
active_tags.o: $(SRCROOT)/gap5/b+tree2.h
active_tags.o: $(SRCROOT)/gap5/g-alloc.h
active_tags.o: $(SRCROOT)/gap5/g-connect.h
active_tags.o: $(SRCROOT)/gap5/g-db.h
active_tags.o: $(SRCROOT)/gap5/g-defs.h
active_tags.o: $(SRCROOT)/gap5/g-error.h
active_tags.o: $(SRCROOT)/gap5/g-filedefs.h
active_tags.o: $(SRCROOT)/gap5/g-io.h
active_tags.o: $(SRCROOT)/gap5/g-misc.h
active_tags.o: $(SRCROOT)/gap5/g-os.h
active_tags.o: $(SRCROOT)/gap5/g-request.h
active_tags.o: $(SRCROOT)/gap5/g-struct.h
active_tags.o: $(SRCROOT)/gap5/g.h
active_tags.o: $(SRCROOT)/gap5/hache_table.h
active_tags.o: $(SRCROOT)/gap5/io_utils.h
active_tags.o: $(SRCROOT)/gap5/list_proc.h
active_tags.o: $(SRCROOT)/gap5/tagdb.h
active_tags.o: $(SRCROOT)/gap5/tg_anno.h
active_tags.o: $(SRCROOT)/gap5/tg_bin.h
active_tags.o: $(SRCROOT)/gap5/tg_cache_item.h
active_tags.o: $(SRCROOT)/gap5/tg_contig.h
active_tags.o: $(SRCROOT)/gap5/tg_gio.h
active_tags.o: $(SRCROOT)/gap5/tg_iface.h
active_tags.o: $(SRCROOT)/gap5/tg_library.h
active_tags.o: $(SRCROOT)/gap5/tg_register.h
active_tags.o: $(SRCROOT)/gap5/tg_scaffold.h
active_tags.o: $(SRCROOT)/gap5/tg_sequence.h
active_tags.o: $(SRCROOT)/gap5/tg_struct.h
active_tags.o: $(SRCROOT)/gap5/tg_tcl.h
active_tags.o: $(SRCROOT)/gap5/tg_track.h
active_tags.o: $(SRCROOT)/gap5/tg_utils.h
active_tags.o: $(SRCROOT)/tk_utils/intrinsic_type.h
afg.o: $(PWD)/staden_config.h
afg.o: $(SRCROOT)/Misc/array.h
afg.o: $(SRCROOT)/Misc/misc.h
afg.o: $(SRCROOT)/Misc/os.h
afg.o: $(SRCROOT)/Misc/string_alloc.h
afg.o: $(SRCROOT)/Misc/tree.h
afg.o: $(SRCROOT)/Misc/xalloc.h
afg.o: $(SRCROOT)/Misc/xerror.h
afg.o: $(SRCROOT)/gap5/afg.h
afg.o: $(SRCROOT)/gap5/b+tree2.h
afg.o: $(SRCROOT)/gap5/g-alloc.h
afg.o: $(SRCROOT)/gap5/g-connect.h
afg.o: $(SRCROOT)/gap5/g-db.h
afg.o: $(SRCROOT)/gap5/g-defs.h
afg.o: $(SRCROOT)/gap5/g-error.h
afg.o: $(SRCROOT)/gap5/g-filedefs.h
afg.o: $(SRCROOT)/gap5/g-io.h
afg.o: $(SRCROOT)/gap5/g-misc.h
afg.o: $(SRCROOT)/gap5/g-os.h
afg.o: $(SRCROOT)/gap5/g-request.h
afg.o: $(SRCROOT)/gap5/g-struct.h
afg.o: $(SRCROOT)/gap5/g.h
afg.o: $(SRCROOT)/gap5/hache_table.h
afg.o: $(SRCROOT)/gap5/io_utils.h
afg.o: $(SRCROOT)/gap5/tg_anno.h
afg.o: $(SRCROOT)/gap5/tg_bin.h
afg.o: $(SRCROOT)/gap5/tg_cache_item.h
afg.o: $(SRCROOT)/gap5/tg_contig.h
afg.o: $(SRCROOT)/gap5/tg_gio.h
afg.o: $(SRCROOT)/gap5/tg_iface.h
afg.o: $(SRCROOT)/gap5/tg_index.h
afg.o: $(SRCROOT)/gap5/tg_index_common.h
afg.o: $(SRCROOT)/gap5/tg_library.h
afg.o: $(SRCROOT)/gap5/tg_register.h
afg.o: $(SRCROOT)/gap5/tg_scaffold.h
afg.o: $(SRCROOT)/gap5/tg_sequence.h
afg.o: $(SRCROOT)/gap5/tg_struct.h
afg.o: $(SRCROOT)/gap5/tg_tcl.h
afg.o: $(SRCROOT)/gap5/tg_track.h
afg.o: $(SRCROOT)/gap5/tg_utils.h
auto_break.o: $(PWD)/staden_config.h
auto_break.o: $(SRCROOT)/Misc/array.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/tree.h
auto_break.o: $(SRCROOT)/Misc/xalloc.h
auto_break.o: $(SRCROOT)/Misc/xerror.h
auto_break.o: $(SRCROOT)/gap5/auto_break.h
auto_break.o: $(SRCROOT)/gap5/b+tree2.h
auto_break.o: $(SRCROOT)/gap5/consensus.h
auto_break.o: $(SRCROOT)/gap5/g-alloc.h
auto_break.o: $(SRCROOT)/gap5/g-connect.h
auto_break.o: $(SRCROOT)/gap5/g-db.h
auto_break.o: $(SRCROOT)/gap5/g-defs.h
auto_break.o: $(SRCROOT)/gap5/g-error.h
auto_break.o: $(SRCROOT)/gap5/g-filedefs.h
auto_break.o: $(SRCROOT)/gap5/g-io.h
auto_break.o: $(SRCROOT)/gap5/g-misc.h
auto_break.o: $(SRCROOT)/gap5/g-os.h
auto_break.o: $(SRCROOT)/gap5/g-request.h
auto_break.o: $(SRCROOT)/gap5/g-struct.h
auto_break.o: $(SRCROOT)/gap5/g.h
auto_break.o: $(SRCROOT)/gap5/gap_globals.h
auto_break.o: $(SRCROOT)/gap5/hache_table.h
auto_break.o: $(SRCROOT)/gap5/io_utils.h
auto_break.o: $(SRCROOT)/gap5/qual.h
auto_break.o: $(SRCROOT)/gap5/qualIO.h
auto_break.o: $(SRCROOT)/gap5/tg_anno.h
auto_break.o: $(SRCROOT)/gap5/tg_bin.h
auto_break.o: $(SRCROOT)/gap5/tg_cache_item.h
auto_break.o: $(SRCROOT)/gap5/tg_contig.h
auto_break.o: $(SRCROOT)/gap5/tg_gio.h
auto_break.o: $(SRCROOT)/gap5/tg_iface.h
auto_break.o: $(SRCROOT)/gap5/tg_library.h
auto_break.o: $(SRCROOT)/gap5/tg_register.h
auto_break.o: $(SRCROOT)/gap5/tg_scaffold.h
auto_break.o: $(SRCROOT)/gap5/tg_sequence.h
auto_break.o: $(SRCROOT)/gap5/tg_struct.h
auto_break.o: $(SRCROOT)/gap5/tg_tcl.h
auto_break.o: $(SRCROOT)/gap5/tg_track.h
auto_break.o: $(SRCROOT)/gap5/tg_utils.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
b+tree2.o: $(PWD)/staden_config.h
b+tree2.o: $(SRCROOT)/Misc/array.h
b+tree2.o: $(SRCROOT)/Misc/os.h
b+tree2.o: $(SRCROOT)/Misc/xerror.h
b+tree2.o: $(SRCROOT)/gap5/b+tree2.h
b+tree2.o: $(SRCROOT)/gap5/g-alloc.h
b+tree2.o: $(SRCROOT)/gap5/g-connect.h
b+tree2.o: $(SRCROOT)/gap5/g-db.h
b+tree2.o: $(SRCROOT)/gap5/g-defs.h
b+tree2.o: $(SRCROOT)/gap5/g-error.h
b+tree2.o: $(SRCROOT)/gap5/g-filedefs.h
b+tree2.o: $(SRCROOT)/gap5/g-io.h
b+tree2.o: $(SRCROOT)/gap5/g-misc.h
b+tree2.o: $(SRCROOT)/gap5/g-os.h
b+tree2.o: $(SRCROOT)/gap5/g-request.h
b+tree2.o: $(SRCROOT)/gap5/g-struct.h
b+tree2.o: $(SRCROOT)/gap5/g.h
b+tree2.o: $(SRCROOT)/gap5/hache_table.h
b+tree2.o: $(SRCROOT)/gap5/tg_struct.h
b+tree2.o: $(SRCROOT)/gap5/tg_utils.h
baf.o: $(PWD)/staden_config.h
baf.o: $(SRCROOT)/Misc/array.h
baf.o: $(SRCROOT)/Misc/misc.h
baf.o: $(SRCROOT)/Misc/os.h
baf.o: $(SRCROOT)/Misc/string_alloc.h
baf.o: $(SRCROOT)/Misc/tree.h
baf.o: $(SRCROOT)/Misc/xalloc.h
baf.o: $(SRCROOT)/Misc/xerror.h
baf.o: $(SRCROOT)/gap5/b+tree2.h
baf.o: $(SRCROOT)/gap5/baf.h
baf.o: $(SRCROOT)/gap5/g-alloc.h
baf.o: $(SRCROOT)/gap5/g-connect.h
baf.o: $(SRCROOT)/gap5/g-db.h
baf.o: $(SRCROOT)/gap5/g-defs.h
baf.o: $(SRCROOT)/gap5/g-error.h
baf.o: $(SRCROOT)/gap5/g-filedefs.h
baf.o: $(SRCROOT)/gap5/g-io.h
baf.o: $(SRCROOT)/gap5/g-misc.h
baf.o: $(SRCROOT)/gap5/g-os.h
baf.o: $(SRCROOT)/gap5/g-request.h
baf.o: $(SRCROOT)/gap5/g-struct.h
baf.o: $(SRCROOT)/gap5/g.h
baf.o: $(SRCROOT)/gap5/hache_table.h
baf.o: $(SRCROOT)/gap5/io_utils.h
baf.o: $(SRCROOT)/gap5/tg_anno.h
baf.o: $(SRCROOT)/gap5/tg_bin.h
baf.o: $(SRCROOT)/gap5/tg_cache_item.h
baf.o: $(SRCROOT)/gap5/tg_contig.h
baf.o: $(SRCROOT)/gap5/tg_gio.h
baf.o: $(SRCROOT)/gap5/tg_iface.h
baf.o: $(SRCROOT)/gap5/tg_index.h
baf.o: $(SRCROOT)/gap5/tg_index_common.h
baf.o: $(SRCROOT)/gap5/tg_library.h
baf.o: $(SRCROOT)/gap5/tg_register.h
baf.o: $(SRCROOT)/gap5/tg_scaffold.h
baf.o: $(SRCROOT)/gap5/tg_sequence.h
baf.o: $(SRCROOT)/gap5/tg_struct.h
baf.o: $(SRCROOT)/gap5/tg_tcl.h
baf.o: $(SRCROOT)/gap5/tg_track.h
baf.o: $(SRCROOT)/gap5/tg_utils.h
break_contig.o: $(PWD)/staden_config.h
break_contig.o: $(SRCROOT)/Misc/array.h
break_contig.o: $(SRCROOT)/Misc/misc.h
break_contig.o: $(SRCROOT)/Misc/os.h
break_contig.o: $(SRCROOT)/Misc/tree.h
break_contig.o: $(SRCROOT)/Misc/xalloc.h
break_contig.o: $(SRCROOT)/Misc/xerror.h
break_contig.o: $(SRCROOT)/gap5/b+tree2.h
break_contig.o: $(SRCROOT)/gap5/break_contig.h
break_contig.o: $(SRCROOT)/gap5/consensus.h
break_contig.o: $(SRCROOT)/gap5/dis_readings.h
break_contig.o: $(SRCROOT)/gap5/g-alloc.h
break_contig.o: $(SRCROOT)/gap5/g-connect.h
break_contig.o: $(SRCROOT)/gap5/g-db.h
break_contig.o: $(SRCROOT)/gap5/g-defs.h
break_contig.o: $(SRCROOT)/gap5/g-error.h
break_contig.o: $(SRCROOT)/gap5/g-filedefs.h
break_contig.o: $(SRCROOT)/gap5/g-io.h
break_contig.o: $(SRCROOT)/gap5/g-misc.h
break_contig.o: $(SRCROOT)/gap5/g-os.h
break_contig.o: $(SRCROOT)/gap5/g-request.h
break_contig.o: $(SRCROOT)/gap5/g-struct.h
break_contig.o: $(SRCROOT)/gap5/g.h
break_contig.o: $(SRCROOT)/gap5/hache_table.h
break_contig.o: $(SRCROOT)/gap5/io_utils.h
break_contig.o: $(SRCROOT)/gap5/tg_anno.h
break_contig.o: $(SRCROOT)/gap5/tg_bin.h
break_contig.o: $(SRCROOT)/gap5/tg_cache_item.h
break_contig.o: $(SRCROOT)/gap5/tg_contig.h
break_contig.o: $(SRCROOT)/gap5/tg_gio.h
break_contig.o: $(SRCROOT)/gap5/tg_iface.h
break_contig.o: $(SRCROOT)/gap5/tg_library.h
break_contig.o: $(SRCROOT)/gap5/tg_register.h
break_contig.o: $(SRCROOT)/gap5/tg_scaffold.h
break_contig.o: $(SRCROOT)/gap5/tg_sequence.h
break_contig.o: $(SRCROOT)/gap5/tg_struct.h
break_contig.o: $(SRCROOT)/gap5/tg_tcl.h
break_contig.o: $(SRCROOT)/gap5/tg_track.h
break_contig.o: $(SRCROOT)/gap5/tg_utils.h
caf.o: $(PWD)/staden_config.h
caf.o: $(SRCROOT)/Misc/array.h
caf.o: $(SRCROOT)/Misc/misc.h
caf.o: $(SRCROOT)/Misc/os.h
caf.o: $(SRCROOT)/Misc/string_alloc.h
caf.o: $(SRCROOT)/Misc/tree.h
caf.o: $(SRCROOT)/Misc/xalloc.h
caf.o: $(SRCROOT)/Misc/xerror.h
caf.o: $(SRCROOT)/gap5/b+tree2.h
caf.o: $(SRCROOT)/gap5/caf.h
caf.o: $(SRCROOT)/gap5/g-alloc.h
caf.o: $(SRCROOT)/gap5/g-connect.h
caf.o: $(SRCROOT)/gap5/g-db.h
caf.o: $(SRCROOT)/gap5/g-defs.h
caf.o: $(SRCROOT)/gap5/g-error.h
caf.o: $(SRCROOT)/gap5/g-filedefs.h
caf.o: $(SRCROOT)/gap5/g-io.h
caf.o: $(SRCROOT)/gap5/g-misc.h
caf.o: $(SRCROOT)/gap5/g-os.h
caf.o: $(SRCROOT)/gap5/g-request.h
caf.o: $(SRCROOT)/gap5/g-struct.h
caf.o: $(SRCROOT)/gap5/g.h
caf.o: $(SRCROOT)/gap5/hache_table.h
caf.o: $(SRCROOT)/gap5/io_utils.h
caf.o: $(SRCROOT)/gap5/tg_anno.h
caf.o: $(SRCROOT)/gap5/tg_bin.h
caf.o: $(SRCROOT)/gap5/tg_cache_item.h
caf.o: $(SRCROOT)/gap5/tg_contig.h
caf.o: $(SRCROOT)/gap5/tg_gio.h
caf.o: $(SRCROOT)/gap5/tg_iface.h
caf.o: $(SRCROOT)/gap5/tg_index.h
caf.o: $(SRCROOT)/gap5/tg_index_common.h
caf.o: $(SRCROOT)/gap5/tg_library.h
caf.o: $(SRCROOT)/gap5/tg_register.h
caf.o: $(SRCROOT)/gap5/tg_scaffold.h
caf.o: $(SRCROOT)/gap5/tg_sequence.h
caf.o: $(SRCROOT)/gap5/tg_struct.h
caf.o: $(SRCROOT)/gap5/tg_tcl.h
caf.o: $(SRCROOT)/gap5/tg_track.h
caf.o: $(SRCROOT)/gap5/tg_utils.h
check_assembly.o: $(PWD)/staden_config.h
check_assembly.o: $(SRCROOT)/Misc/array.h
check_assembly.o: $(SRCROOT)/Misc/misc.h
check_assembly.o: $(SRCROOT)/Misc/os.h
check_assembly.o: $(SRCROOT)/Misc/tree.h
check_assembly.o: $(SRCROOT)/Misc/xalloc.h
check_assembly.o: $(SRCROOT)/Misc/xerror.h
check_assembly.o: $(SRCROOT)/gap5/b+tree2.h
check_assembly.o: $(SRCROOT)/gap5/consen.h
check_assembly.o: $(SRCROOT)/gap5/consensus.h
check_assembly.o: $(SRCROOT)/gap5/contig_selector.h
check_assembly.o: $(SRCROOT)/gap5/cs-object.h
check_assembly.o: $(SRCROOT)/gap5/editor_view.h
check_assembly.o: $(SRCROOT)/gap5/g-alloc.h
check_assembly.o: $(SRCROOT)/gap5/g-connect.h
check_assembly.o: $(SRCROOT)/gap5/g-db.h
check_assembly.o: $(SRCROOT)/gap5/g-defs.h
check_assembly.o: $(SRCROOT)/gap5/g-error.h
check_assembly.o: $(SRCROOT)/gap5/g-filedefs.h
check_assembly.o: $(SRCROOT)/gap5/g-io.h
check_assembly.o: $(SRCROOT)/gap5/g-misc.h
check_assembly.o: $(SRCROOT)/gap5/g-os.h
check_assembly.o: $(SRCROOT)/gap5/g-request.h
check_assembly.o: $(SRCROOT)/gap5/g-struct.h
check_assembly.o: $(SRCROOT)/gap5/g.h
check_assembly.o: $(SRCROOT)/gap5/gap4_compat.h
check_assembly.o: $(SRCROOT)/gap5/gap_globals.h
check_assembly.o: $(SRCROOT)/gap5/hache_table.h
check_assembly.o: $(SRCROOT)/gap5/io_utils.h
check_assembly.o: $(SRCROOT)/gap5/qual.h
check_assembly.o: $(SRCROOT)/gap5/tg_anno.h
check_assembly.o: $(SRCROOT)/gap5/tg_bin.h
check_assembly.o: $(SRCROOT)/gap5/tg_cache_item.h
check_assembly.o: $(SRCROOT)/gap5/tg_contig.h
check_assembly.o: $(SRCROOT)/gap5/tg_gio.h
check_assembly.o: $(SRCROOT)/gap5/tg_iface.h
check_assembly.o: $(SRCROOT)/gap5/tg_library.h
check_assembly.o: $(SRCROOT)/gap5/tg_register.h
check_assembly.o: $(SRCROOT)/gap5/tg_scaffold.h
check_assembly.o: $(SRCROOT)/gap5/tg_sequence.h
check_assembly.o: $(SRCROOT)/gap5/tg_struct.h
check_assembly.o: $(SRCROOT)/gap5/tg_tcl.h
check_assembly.o: $(SRCROOT)/gap5/tg_track.h
check_assembly.o: $(SRCROOT)/gap5/tg_utils.h
check_assembly.o: $(SRCROOT)/gap5/tk-io-reg.h
check_assembly.o: $(SRCROOT)/gap5/tkEdNames.h
check_assembly.o: $(SRCROOT)/gap5/tkEditor.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/intrinsic_type.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
consen.o: $(PWD)/staden_config.h
consen.o: $(SRCROOT)/Misc/array.h
consen.o: $(SRCROOT)/Misc/misc.h
consen.o: $(SRCROOT)/Misc/os.h
consen.o: $(SRCROOT)/Misc/tree.h
consen.o: $(SRCROOT)/Misc/xalloc.h
consen.o: $(SRCROOT)/Misc/xerror.h
consen.o: $(SRCROOT)/gap5/b+tree2.h
consen.o: $(SRCROOT)/gap5/consen.h
consen.o: $(SRCROOT)/gap5/consensus.h
consen.o: $(SRCROOT)/gap5/extract.h
consen.o: $(SRCROOT)/gap5/g-alloc.h
consen.o: $(SRCROOT)/gap5/g-connect.h
consen.o: $(SRCROOT)/gap5/g-db.h
consen.o: $(SRCROOT)/gap5/g-defs.h
consen.o: $(SRCROOT)/gap5/g-error.h
consen.o: $(SRCROOT)/gap5/g-filedefs.h
consen.o: $(SRCROOT)/gap5/g-io.h
consen.o: $(SRCROOT)/gap5/g-misc.h
consen.o: $(SRCROOT)/gap5/g-os.h
consen.o: $(SRCROOT)/gap5/g-request.h
consen.o: $(SRCROOT)/gap5/g-struct.h
consen.o: $(SRCROOT)/gap5/g.h
consen.o: $(SRCROOT)/gap5/gap4_compat.h
consen.o: $(SRCROOT)/gap5/gap_globals.h
consen.o: $(SRCROOT)/gap5/hache_table.h
consen.o: $(SRCROOT)/gap5/io_utils.h
consen.o: $(SRCROOT)/gap5/list_proc.h
consen.o: $(SRCROOT)/gap5/qual.h
consen.o: $(SRCROOT)/gap5/tg_anno.h
consen.o: $(SRCROOT)/gap5/tg_bin.h
consen.o: $(SRCROOT)/gap5/tg_cache_item.h
consen.o: $(SRCROOT)/gap5/tg_contig.h
consen.o: $(SRCROOT)/gap5/tg_gio.h
consen.o: $(SRCROOT)/gap5/tg_iface.h
consen.o: $(SRCROOT)/gap5/tg_library.h
consen.o: $(SRCROOT)/gap5/tg_register.h
consen.o: $(SRCROOT)/gap5/tg_scaffold.h
consen.o: $(SRCROOT)/gap5/tg_sequence.h
consen.o: $(SRCROOT)/gap5/tg_struct.h
consen.o: $(SRCROOT)/gap5/tg_tcl.h
consen.o: $(SRCROOT)/gap5/tg_track.h
consen.o: $(SRCROOT)/gap5/tg_utils.h
consen.o: $(SRCROOT)/seq_utils/align_lib.h
consen.o: $(SRCROOT)/seq_utils/dna_utils.h
consen.o: $(SRCROOT)/tk_utils/tcl_utils.h
consensus.o: $(PWD)/staden_config.h
consensus.o: $(SRCROOT)/Misc/array.h
consensus.o: $(SRCROOT)/Misc/misc.h
consensus.o: $(SRCROOT)/Misc/os.h
consensus.o: $(SRCROOT)/Misc/tree.h
consensus.o: $(SRCROOT)/Misc/xalloc.h
consensus.o: $(SRCROOT)/Misc/xerror.h
consensus.o: $(SRCROOT)/gap5/b+tree2.h
consensus.o: $(SRCROOT)/gap5/consensus.h
consensus.o: $(SRCROOT)/gap5/g-alloc.h
consensus.o: $(SRCROOT)/gap5/g-connect.h
consensus.o: $(SRCROOT)/gap5/g-db.h
consensus.o: $(SRCROOT)/gap5/g-defs.h
consensus.o: $(SRCROOT)/gap5/g-error.h
consensus.o: $(SRCROOT)/gap5/g-filedefs.h
consensus.o: $(SRCROOT)/gap5/g-io.h
consensus.o: $(SRCROOT)/gap5/g-misc.h
consensus.o: $(SRCROOT)/gap5/g-os.h
consensus.o: $(SRCROOT)/gap5/g-request.h
consensus.o: $(SRCROOT)/gap5/g-struct.h
consensus.o: $(SRCROOT)/gap5/g.h
consensus.o: $(SRCROOT)/gap5/gap_globals.h
consensus.o: $(SRCROOT)/gap5/hache_table.h
consensus.o: $(SRCROOT)/gap5/io_utils.h
consensus.o: $(SRCROOT)/gap5/tg_anno.h
consensus.o: $(SRCROOT)/gap5/tg_bin.h
consensus.o: $(SRCROOT)/gap5/tg_cache_item.h
consensus.o: $(SRCROOT)/gap5/tg_contig.h
consensus.o: $(SRCROOT)/gap5/tg_gio.h
consensus.o: $(SRCROOT)/gap5/tg_iface.h
consensus.o: $(SRCROOT)/gap5/tg_library.h
consensus.o: $(SRCROOT)/gap5/tg_register.h
consensus.o: $(SRCROOT)/gap5/tg_scaffold.h
consensus.o: $(SRCROOT)/gap5/tg_sequence.h
consensus.o: $(SRCROOT)/gap5/tg_struct.h
consensus.o: $(SRCROOT)/gap5/tg_tcl.h
consensus.o: $(SRCROOT)/gap5/tg_track.h
consensus.o: $(SRCROOT)/gap5/tg_utils.h
consensus.o: $(SRCROOT)/tk_utils/tcl_utils.h
contig_extend.o: $(PWD)/staden_config.h
contig_extend.o: $(SRCROOT)/Misc/array.h
contig_extend.o: $(SRCROOT)/Misc/misc.h
contig_extend.o: $(SRCROOT)/Misc/os.h
contig_extend.o: $(SRCROOT)/Misc/tree.h
contig_extend.o: $(SRCROOT)/Misc/xalloc.h
contig_extend.o: $(SRCROOT)/Misc/xerror.h
contig_extend.o: $(SRCROOT)/gap5/b+tree2.h
contig_extend.o: $(SRCROOT)/gap5/break_contig.h
contig_extend.o: $(SRCROOT)/gap5/consensus.h
contig_extend.o: $(SRCROOT)/gap5/contig_extend.h
contig_extend.o: $(SRCROOT)/gap5/g-alloc.h
contig_extend.o: $(SRCROOT)/gap5/g-connect.h
contig_extend.o: $(SRCROOT)/gap5/g-db.h
contig_extend.o: $(SRCROOT)/gap5/g-defs.h
contig_extend.o: $(SRCROOT)/gap5/g-error.h
contig_extend.o: $(SRCROOT)/gap5/g-filedefs.h
contig_extend.o: $(SRCROOT)/gap5/g-io.h
contig_extend.o: $(SRCROOT)/gap5/g-misc.h
contig_extend.o: $(SRCROOT)/gap5/g-os.h
contig_extend.o: $(SRCROOT)/gap5/g-request.h
contig_extend.o: $(SRCROOT)/gap5/g-struct.h
contig_extend.o: $(SRCROOT)/gap5/g.h
contig_extend.o: $(SRCROOT)/gap5/gap4_compat.h
contig_extend.o: $(SRCROOT)/gap5/hache_table.h
contig_extend.o: $(SRCROOT)/gap5/io_utils.h
contig_extend.o: $(SRCROOT)/gap5/tg_anno.h
contig_extend.o: $(SRCROOT)/gap5/tg_bin.h
contig_extend.o: $(SRCROOT)/gap5/tg_cache_item.h
contig_extend.o: $(SRCROOT)/gap5/tg_contig.h
contig_extend.o: $(SRCROOT)/gap5/tg_gio.h
contig_extend.o: $(SRCROOT)/gap5/tg_iface.h
contig_extend.o: $(SRCROOT)/gap5/tg_library.h
contig_extend.o: $(SRCROOT)/gap5/tg_register.h
contig_extend.o: $(SRCROOT)/gap5/tg_scaffold.h
contig_extend.o: $(SRCROOT)/gap5/tg_sequence.h
contig_extend.o: $(SRCROOT)/gap5/tg_struct.h
contig_extend.o: $(SRCROOT)/gap5/tg_tcl.h
contig_extend.o: $(SRCROOT)/gap5/tg_track.h
contig_extend.o: $(SRCROOT)/gap5/tg_utils.h
contig_extend.o: $(SRCROOT)/seq_utils/dna_utils.h
contig_extend.o: $(SRCROOT)/tk_utils/text_output.h
contig_selector.o: $(PWD)/staden_config.h
contig_selector.o: $(SRCROOT)/Misc/array.h
contig_selector.o: $(SRCROOT)/Misc/misc.h
contig_selector.o: $(SRCROOT)/Misc/os.h
contig_selector.o: $(SRCROOT)/Misc/tree.h
contig_selector.o: $(SRCROOT)/Misc/xalloc.h
contig_selector.o: $(SRCROOT)/Misc/xerror.h
contig_selector.o: $(SRCROOT)/gap5/active_tags.h
contig_selector.o: $(SRCROOT)/gap5/b+tree2.h
contig_selector.o: $(SRCROOT)/gap5/consensus.h
contig_selector.o: $(SRCROOT)/gap5/contig_selector.h
contig_selector.o: $(SRCROOT)/gap5/cs-object.h
contig_selector.o: $(SRCROOT)/gap5/g-alloc.h
contig_selector.o: $(SRCROOT)/gap5/g-connect.h
contig_selector.o: $(SRCROOT)/gap5/g-db.h
contig_selector.o: $(SRCROOT)/gap5/g-defs.h
contig_selector.o: $(SRCROOT)/gap5/g-error.h
contig_selector.o: $(SRCROOT)/gap5/g-filedefs.h
contig_selector.o: $(SRCROOT)/gap5/g-io.h
contig_selector.o: $(SRCROOT)/gap5/g-misc.h
contig_selector.o: $(SRCROOT)/gap5/g-os.h
contig_selector.o: $(SRCROOT)/gap5/g-request.h
contig_selector.o: $(SRCROOT)/gap5/g-struct.h
contig_selector.o: $(SRCROOT)/gap5/g.h
contig_selector.o: $(SRCROOT)/gap5/gap4_compat.h
contig_selector.o: $(SRCROOT)/gap5/gap_cli_arg.h
contig_selector.o: $(SRCROOT)/gap5/gap_globals.h
contig_selector.o: $(SRCROOT)/gap5/hache_table.h
contig_selector.o: $(SRCROOT)/gap5/io_utils.h
contig_selector.o: $(SRCROOT)/gap5/list.h
contig_selector.o: $(SRCROOT)/gap5/newgap_cmds.h
contig_selector.o: $(SRCROOT)/gap5/tagdb.h
contig_selector.o: $(SRCROOT)/gap5/tg_anno.h
contig_selector.o: $(SRCROOT)/gap5/tg_bin.h
contig_selector.o: $(SRCROOT)/gap5/tg_cache_item.h
contig_selector.o: $(SRCROOT)/gap5/tg_contig.h
contig_selector.o: $(SRCROOT)/gap5/tg_gio.h
contig_selector.o: $(SRCROOT)/gap5/tg_iface.h
contig_selector.o: $(SRCROOT)/gap5/tg_library.h
contig_selector.o: $(SRCROOT)/gap5/tg_register.h
contig_selector.o: $(SRCROOT)/gap5/tg_scaffold.h
contig_selector.o: $(SRCROOT)/gap5/tg_sequence.h
contig_selector.o: $(SRCROOT)/gap5/tg_struct.h
contig_selector.o: $(SRCROOT)/gap5/tg_tcl.h
contig_selector.o: $(SRCROOT)/gap5/tg_track.h
contig_selector.o: $(SRCROOT)/gap5/tg_utils.h
contig_selector.o: $(SRCROOT)/tk_utils/canvas_box.h
contig_selector.o: $(SRCROOT)/tk_utils/intrinsic_type.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
cs-object.o: $(PWD)/staden_config.h
cs-object.o: $(SRCROOT)/Misc/array.h
cs-object.o: $(SRCROOT)/Misc/misc.h
cs-object.o: $(SRCROOT)/Misc/os.h
cs-object.o: $(SRCROOT)/Misc/tree.h
cs-object.o: $(SRCROOT)/Misc/xalloc.h
cs-object.o: $(SRCROOT)/Misc/xerror.h
cs-object.o: $(SRCROOT)/gap5/b+tree2.h
cs-object.o: $(SRCROOT)/gap5/consen.h
cs-object.o: $(SRCROOT)/gap5/consensus.h
cs-object.o: $(SRCROOT)/gap5/contig_selector.h
cs-object.o: $(SRCROOT)/gap5/cs-object.h
cs-object.o: $(SRCROOT)/gap5/fij.h
cs-object.o: $(SRCROOT)/gap5/find_repeats.h
cs-object.o: $(SRCROOT)/gap5/g-alloc.h
cs-object.o: $(SRCROOT)/gap5/g-connect.h
cs-object.o: $(SRCROOT)/gap5/g-db.h
cs-object.o: $(SRCROOT)/gap5/g-defs.h
cs-object.o: $(SRCROOT)/gap5/g-error.h
cs-object.o: $(SRCROOT)/gap5/g-filedefs.h
cs-object.o: $(SRCROOT)/gap5/g-io.h
cs-object.o: $(SRCROOT)/gap5/g-misc.h
cs-object.o: $(SRCROOT)/gap5/g-os.h
cs-object.o: $(SRCROOT)/gap5/g-request.h
cs-object.o: $(SRCROOT)/gap5/g-struct.h
cs-object.o: $(SRCROOT)/gap5/g.h
cs-object.o: $(SRCROOT)/gap5/gap4_compat.h
cs-object.o: $(SRCROOT)/gap5/gap_globals.h
cs-object.o: $(SRCROOT)/gap5/hache_table.h
cs-object.o: $(SRCROOT)/gap5/hash_lib.h
cs-object.o: $(SRCROOT)/gap5/io_utils.h
cs-object.o: $(SRCROOT)/gap5/list.h
cs-object.o: $(SRCROOT)/gap5/newgap_cmds.h
cs-object.o: $(SRCROOT)/gap5/newgap_structs.h
cs-object.o: $(SRCROOT)/gap5/readpair.h
cs-object.o: $(SRCROOT)/gap5/tg_anno.h
cs-object.o: $(SRCROOT)/gap5/tg_bin.h
cs-object.o: $(SRCROOT)/gap5/tg_cache_item.h
cs-object.o: $(SRCROOT)/gap5/tg_contig.h
cs-object.o: $(SRCROOT)/gap5/tg_gio.h
cs-object.o: $(SRCROOT)/gap5/tg_iface.h
cs-object.o: $(SRCROOT)/gap5/tg_library.h
cs-object.o: $(SRCROOT)/gap5/tg_register.h
cs-object.o: $(SRCROOT)/gap5/tg_scaffold.h
cs-object.o: $(SRCROOT)/gap5/tg_sequence.h
cs-object.o: $(SRCROOT)/gap5/tg_struct.h
cs-object.o: $(SRCROOT)/gap5/tg_tcl.h
cs-object.o: $(SRCROOT)/gap5/tg_track.h
cs-object.o: $(SRCROOT)/gap5/tg_utils.h
cs-object.o: $(SRCROOT)/gap5/tk-io-reg.h
cs-object.o: $(SRCROOT)/seq_utils/align_lib.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
depad_seq_tree.o: $(PWD)/staden_config.h
depad_seq_tree.o: $(SRCROOT)/Misc/array.h
depad_seq_tree.o: $(SRCROOT)/Misc/misc.h
depad_seq_tree.o: $(SRCROOT)/Misc/os.h
depad_seq_tree.o: $(SRCROOT)/Misc/tree.h
depad_seq_tree.o: $(SRCROOT)/Misc/xalloc.h
depad_seq_tree.o: $(SRCROOT)/Misc/xerror.h
depad_seq_tree.o: $(SRCROOT)/gap5/b+tree2.h
depad_seq_tree.o: $(SRCROOT)/gap5/consensus.h
depad_seq_tree.o: $(SRCROOT)/gap5/depad_seq_tree.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-alloc.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-connect.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-db.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-defs.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-error.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-filedefs.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-io.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-misc.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-os.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-request.h
depad_seq_tree.o: $(SRCROOT)/gap5/g-struct.h
depad_seq_tree.o: $(SRCROOT)/gap5/g.h
depad_seq_tree.o: $(SRCROOT)/gap5/hache_table.h
depad_seq_tree.o: $(SRCROOT)/gap5/io_utils.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_anno.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_bin.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_cache_item.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_contig.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_gio.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_iface.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_library.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_register.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_scaffold.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_sequence.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_struct.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_tcl.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_track.h
depad_seq_tree.o: $(SRCROOT)/gap5/tg_utils.h
depth_track.o: $(PWD)/staden_config.h
depth_track.o: $(SRCROOT)/Misc/array.h
depth_track.o: $(SRCROOT)/Misc/misc.h
depth_track.o: $(SRCROOT)/Misc/os.h
depth_track.o: $(SRCROOT)/Misc/tree.h
depth_track.o: $(SRCROOT)/Misc/xalloc.h
depth_track.o: $(SRCROOT)/Misc/xerror.h
depth_track.o: $(SRCROOT)/gap5/b+tree2.h
depth_track.o: $(SRCROOT)/gap5/depth_track.h
depth_track.o: $(SRCROOT)/gap5/g-alloc.h
depth_track.o: $(SRCROOT)/gap5/g-connect.h
depth_track.o: $(SRCROOT)/gap5/g-db.h
depth_track.o: $(SRCROOT)/gap5/g-defs.h
depth_track.o: $(SRCROOT)/gap5/g-error.h
depth_track.o: $(SRCROOT)/gap5/g-filedefs.h
depth_track.o: $(SRCROOT)/gap5/g-io.h
depth_track.o: $(SRCROOT)/gap5/g-misc.h
depth_track.o: $(SRCROOT)/gap5/g-os.h
depth_track.o: $(SRCROOT)/gap5/g-request.h
depth_track.o: $(SRCROOT)/gap5/g-struct.h
depth_track.o: $(SRCROOT)/gap5/g.h
depth_track.o: $(SRCROOT)/gap5/gap_range.h
depth_track.o: $(SRCROOT)/gap5/hache_table.h
depth_track.o: $(SRCROOT)/gap5/io_utils.h
depth_track.o: $(SRCROOT)/gap5/tg_anno.h
depth_track.o: $(SRCROOT)/gap5/tg_bin.h
depth_track.o: $(SRCROOT)/gap5/tg_cache_item.h
depth_track.o: $(SRCROOT)/gap5/tg_contig.h
depth_track.o: $(SRCROOT)/gap5/tg_gio.h
depth_track.o: $(SRCROOT)/gap5/tg_iface.h
depth_track.o: $(SRCROOT)/gap5/tg_library.h
depth_track.o: $(SRCROOT)/gap5/tg_register.h
depth_track.o: $(SRCROOT)/gap5/tg_scaffold.h
depth_track.o: $(SRCROOT)/gap5/tg_sequence.h
depth_track.o: $(SRCROOT)/gap5/tg_struct.h
depth_track.o: $(SRCROOT)/gap5/tg_tcl.h
depth_track.o: $(SRCROOT)/gap5/tg_track.h
depth_track.o: $(SRCROOT)/gap5/tg_utils.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/misc.h
dis_readings.o: $(SRCROOT)/Misc/os.h
dis_readings.o: $(SRCROOT)/Misc/tree.h
dis_readings.o: $(SRCROOT)/Misc/xalloc.h
dis_readings.o: $(SRCROOT)/Misc/xerror.h
dis_readings.o: $(SRCROOT)/gap5/b+tree2.h
dis_readings.o: $(SRCROOT)/gap5/break_contig.h
dis_readings.o: $(SRCROOT)/gap5/consensus.h
dis_readings.o: $(SRCROOT)/gap5/dis_readings.h
dis_readings.o: $(SRCROOT)/gap5/g-alloc.h
dis_readings.o: $(SRCROOT)/gap5/g-connect.h
dis_readings.o: $(SRCROOT)/gap5/g-db.h
dis_readings.o: $(SRCROOT)/gap5/g-defs.h
dis_readings.o: $(SRCROOT)/gap5/g-error.h
dis_readings.o: $(SRCROOT)/gap5/g-filedefs.h
dis_readings.o: $(SRCROOT)/gap5/g-io.h
dis_readings.o: $(SRCROOT)/gap5/g-misc.h
dis_readings.o: $(SRCROOT)/gap5/g-os.h
dis_readings.o: $(SRCROOT)/gap5/g-request.h
dis_readings.o: $(SRCROOT)/gap5/g-struct.h
dis_readings.o: $(SRCROOT)/gap5/g.h
dis_readings.o: $(SRCROOT)/gap5/hache_table.h
dis_readings.o: $(SRCROOT)/gap5/io_utils.h
dis_readings.o: $(SRCROOT)/gap5/tg_anno.h
dis_readings.o: $(SRCROOT)/gap5/tg_bin.h
dis_readings.o: $(SRCROOT)/gap5/tg_cache_item.h
dis_readings.o: $(SRCROOT)/gap5/tg_contig.h
dis_readings.o: $(SRCROOT)/gap5/tg_gio.h
dis_readings.o: $(SRCROOT)/gap5/tg_iface.h
dis_readings.o: $(SRCROOT)/gap5/tg_library.h
dis_readings.o: $(SRCROOT)/gap5/tg_register.h
dis_readings.o: $(SRCROOT)/gap5/tg_scaffold.h
dis_readings.o: $(SRCROOT)/gap5/tg_sequence.h
dis_readings.o: $(SRCROOT)/gap5/tg_struct.h
dis_readings.o: $(SRCROOT)/gap5/tg_tcl.h
dis_readings.o: $(SRCROOT)/gap5/tg_track.h
dis_readings.o: $(SRCROOT)/gap5/tg_utils.h
dis_readings.o: $(SRCROOT)/tk_utils/text_output.h
do_fij.o: $(PWD)/staden_config.h
do_fij.o: $(SRCROOT)/Misc/array.h
do_fij.o: $(SRCROOT)/Misc/misc.h
do_fij.o: $(SRCROOT)/Misc/os.h
do_fij.o: $(SRCROOT)/Misc/tree.h
do_fij.o: $(SRCROOT)/Misc/xalloc.h
do_fij.o: $(SRCROOT)/Misc/xerror.h
do_fij.o: $(SRCROOT)/gap5/b+tree2.h
do_fij.o: $(SRCROOT)/gap5/consen.h
do_fij.o: $(SRCROOT)/gap5/consensus.h
do_fij.o: $(SRCROOT)/gap5/fij.h
do_fij.o: $(SRCROOT)/gap5/g-alloc.h
do_fij.o: $(SRCROOT)/gap5/g-connect.h
do_fij.o: $(SRCROOT)/gap5/g-db.h
do_fij.o: $(SRCROOT)/gap5/g-defs.h
do_fij.o: $(SRCROOT)/gap5/g-error.h
do_fij.o: $(SRCROOT)/gap5/g-filedefs.h
do_fij.o: $(SRCROOT)/gap5/g-io.h
do_fij.o: $(SRCROOT)/gap5/g-misc.h
do_fij.o: $(SRCROOT)/gap5/g-os.h
do_fij.o: $(SRCROOT)/gap5/g-request.h
do_fij.o: $(SRCROOT)/gap5/g-struct.h
do_fij.o: $(SRCROOT)/gap5/g.h
do_fij.o: $(SRCROOT)/gap5/hache_table.h
do_fij.o: $(SRCROOT)/gap5/hash_lib.h
do_fij.o: $(SRCROOT)/gap5/io_utils.h
do_fij.o: $(SRCROOT)/gap5/newgap_structs.h
do_fij.o: $(SRCROOT)/gap5/tg_anno.h
do_fij.o: $(SRCROOT)/gap5/tg_bin.h
do_fij.o: $(SRCROOT)/gap5/tg_cache_item.h
do_fij.o: $(SRCROOT)/gap5/tg_contig.h
do_fij.o: $(SRCROOT)/gap5/tg_gio.h
do_fij.o: $(SRCROOT)/gap5/tg_iface.h
do_fij.o: $(SRCROOT)/gap5/tg_library.h
do_fij.o: $(SRCROOT)/gap5/tg_register.h
do_fij.o: $(SRCROOT)/gap5/tg_scaffold.h
do_fij.o: $(SRCROOT)/gap5/tg_sequence.h
do_fij.o: $(SRCROOT)/gap5/tg_struct.h
do_fij.o: $(SRCROOT)/gap5/tg_tcl.h
do_fij.o: $(SRCROOT)/gap5/tg_track.h
do_fij.o: $(SRCROOT)/gap5/tg_utils.h
do_fij.o: $(SRCROOT)/seq_utils/align_lib.h
do_fij.o: $(SRCROOT)/seq_utils/dna_utils.h
editor_join.o: $(PWD)/staden_config.h
editor_join.o: $(SRCROOT)/Misc/array.h
editor_join.o: $(SRCROOT)/Misc/misc.h
editor_join.o: $(SRCROOT)/Misc/os.h
editor_join.o: $(SRCROOT)/Misc/tree.h
editor_join.o: $(SRCROOT)/Misc/xalloc.h
editor_join.o: $(SRCROOT)/Misc/xerror.h
editor_join.o: $(SRCROOT)/gap5/b+tree2.h
editor_join.o: $(SRCROOT)/gap5/consen.h
editor_join.o: $(SRCROOT)/gap5/consensus.h
editor_join.o: $(SRCROOT)/gap5/dis_readings.h
editor_join.o: $(SRCROOT)/gap5/editor_join.h
editor_join.o: $(SRCROOT)/gap5/editor_view.h
editor_join.o: $(SRCROOT)/gap5/g-alloc.h
editor_join.o: $(SRCROOT)/gap5/g-connect.h
editor_join.o: $(SRCROOT)/gap5/g-db.h
editor_join.o: $(SRCROOT)/gap5/g-defs.h
editor_join.o: $(SRCROOT)/gap5/g-error.h
editor_join.o: $(SRCROOT)/gap5/g-filedefs.h
editor_join.o: $(SRCROOT)/gap5/g-io.h
editor_join.o: $(SRCROOT)/gap5/g-misc.h
editor_join.o: $(SRCROOT)/gap5/g-os.h
editor_join.o: $(SRCROOT)/gap5/g-request.h
editor_join.o: $(SRCROOT)/gap5/g-struct.h
editor_join.o: $(SRCROOT)/gap5/g.h
editor_join.o: $(SRCROOT)/gap5/hache_table.h
editor_join.o: $(SRCROOT)/gap5/hash_lib.h
editor_join.o: $(SRCROOT)/gap5/io_utils.h
editor_join.o: $(SRCROOT)/gap5/tg_anno.h
editor_join.o: $(SRCROOT)/gap5/tg_bin.h
editor_join.o: $(SRCROOT)/gap5/tg_cache_item.h
editor_join.o: $(SRCROOT)/gap5/tg_contig.h
editor_join.o: $(SRCROOT)/gap5/tg_gio.h
editor_join.o: $(SRCROOT)/gap5/tg_iface.h
editor_join.o: $(SRCROOT)/gap5/tg_library.h
editor_join.o: $(SRCROOT)/gap5/tg_register.h
editor_join.o: $(SRCROOT)/gap5/tg_scaffold.h
editor_join.o: $(SRCROOT)/gap5/tg_sequence.h
editor_join.o: $(SRCROOT)/gap5/tg_struct.h
editor_join.o: $(SRCROOT)/gap5/tg_tcl.h
editor_join.o: $(SRCROOT)/gap5/tg_track.h
editor_join.o: $(SRCROOT)/gap5/tg_utils.h
editor_join.o: $(SRCROOT)/gap5/tkEdNames.h
editor_join.o: $(SRCROOT)/gap5/tkEditor.h
editor_join.o: $(SRCROOT)/seq_utils/align.h
editor_join.o: $(SRCROOT)/seq_utils/align_lib.h
editor_join.o: $(SRCROOT)/seq_utils/align_lib_old.h
editor_join.o: $(SRCROOT)/seq_utils/dna_utils.h
editor_join.o: $(SRCROOT)/tk_utils/intrinsic_type.h
editor_join.o: $(SRCROOT)/tk_utils/sheet.h
editor_join.o: $(SRCROOT)/tk_utils/text_output.h
editor_join.o: $(SRCROOT)/tk_utils/tkSheet.h
editor_join.o: $(SRCROOT)/tk_utils/tkSheet_common.h
editor_join.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
editor_oligo.o: $(PWD)/staden_config.h
editor_oligo.o: $(SRCROOT)/Misc/array.h
editor_oligo.o: $(SRCROOT)/Misc/misc.h
editor_oligo.o: $(SRCROOT)/Misc/os.h
editor_oligo.o: $(SRCROOT)/Misc/tree.h
editor_oligo.o: $(SRCROOT)/Misc/xalloc.h
editor_oligo.o: $(SRCROOT)/Misc/xerror.h
editor_oligo.o: $(SRCROOT)/gap5/b+tree2.h
editor_oligo.o: $(SRCROOT)/gap5/consensus.h
editor_oligo.o: $(SRCROOT)/gap5/editor_view.h
editor_oligo.o: $(SRCROOT)/gap5/g-alloc.h
editor_oligo.o: $(SRCROOT)/gap5/g-connect.h
editor_oligo.o: $(SRCROOT)/gap5/g-db.h
editor_oligo.o: $(SRCROOT)/gap5/g-defs.h
editor_oligo.o: $(SRCROOT)/gap5/g-error.h
editor_oligo.o: $(SRCROOT)/gap5/g-filedefs.h
editor_oligo.o: $(SRCROOT)/gap5/g-io.h
editor_oligo.o: $(SRCROOT)/gap5/g-misc.h
editor_oligo.o: $(SRCROOT)/gap5/g-os.h
editor_oligo.o: $(SRCROOT)/gap5/g-request.h
editor_oligo.o: $(SRCROOT)/gap5/g-struct.h
editor_oligo.o: $(SRCROOT)/gap5/g.h
editor_oligo.o: $(SRCROOT)/gap5/gap4_compat.h
editor_oligo.o: $(SRCROOT)/gap5/hache_table.h
editor_oligo.o: $(SRCROOT)/gap5/io_utils.h
editor_oligo.o: $(SRCROOT)/gap5/primlib.h
editor_oligo.o: $(SRCROOT)/gap5/tg_anno.h
editor_oligo.o: $(SRCROOT)/gap5/tg_bin.h
editor_oligo.o: $(SRCROOT)/gap5/tg_cache_item.h
editor_oligo.o: $(SRCROOT)/gap5/tg_contig.h
editor_oligo.o: $(SRCROOT)/gap5/tg_gio.h
editor_oligo.o: $(SRCROOT)/gap5/tg_iface.h
editor_oligo.o: $(SRCROOT)/gap5/tg_library.h
editor_oligo.o: $(SRCROOT)/gap5/tg_register.h
editor_oligo.o: $(SRCROOT)/gap5/tg_scaffold.h
editor_oligo.o: $(SRCROOT)/gap5/tg_sequence.h
editor_oligo.o: $(SRCROOT)/gap5/tg_struct.h
editor_oligo.o: $(SRCROOT)/gap5/tg_tcl.h
editor_oligo.o: $(SRCROOT)/gap5/tg_track.h
editor_oligo.o: $(SRCROOT)/gap5/tg_utils.h
editor_oligo.o: $(SRCROOT)/gap5/tkEdNames.h
editor_oligo.o: $(SRCROOT)/gap5/tkEditor.h
editor_oligo.o: $(SRCROOT)/primer3/src/dpal.h
editor_oligo.o: $(SRCROOT)/primer3/src/primer3.h
editor_oligo.o: $(SRCROOT)/seq_utils/dna_utils.h
editor_oligo.o: $(SRCROOT)/tk_utils/intrinsic_type.h
editor_oligo.o: $(SRCROOT)/tk_utils/sheet.h
editor_oligo.o: $(SRCROOT)/tk_utils/tkSheet.h
editor_oligo.o: $(SRCROOT)/tk_utils/tkSheet_common.h
editor_oligo.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
editor_search.o: $(PWD)/staden_config.h
editor_search.o: $(SRCROOT)/Misc/array.h
editor_search.o: $(SRCROOT)/Misc/misc.h
editor_search.o: $(SRCROOT)/Misc/os.h
editor_search.o: $(SRCROOT)/Misc/reg_exp.h
editor_search.o: $(SRCROOT)/Misc/tree.h
editor_search.o: $(SRCROOT)/Misc/xalloc.h
editor_search.o: $(SRCROOT)/Misc/xerror.h
editor_search.o: $(SRCROOT)/gap5/b+tree2.h
editor_search.o: $(SRCROOT)/gap5/consensus.h
editor_search.o: $(SRCROOT)/gap5/editor_view.h
editor_search.o: $(SRCROOT)/gap5/g-alloc.h
editor_search.o: $(SRCROOT)/gap5/g-connect.h
editor_search.o: $(SRCROOT)/gap5/g-db.h
editor_search.o: $(SRCROOT)/gap5/g-defs.h
editor_search.o: $(SRCROOT)/gap5/g-error.h
editor_search.o: $(SRCROOT)/gap5/g-filedefs.h
editor_search.o: $(SRCROOT)/gap5/g-io.h
editor_search.o: $(SRCROOT)/gap5/g-misc.h
editor_search.o: $(SRCROOT)/gap5/g-os.h
editor_search.o: $(SRCROOT)/gap5/g-request.h
editor_search.o: $(SRCROOT)/gap5/g-struct.h
editor_search.o: $(SRCROOT)/gap5/g.h
editor_search.o: $(SRCROOT)/gap5/gap4_compat.h
editor_search.o: $(SRCROOT)/gap5/hache_table.h
editor_search.o: $(SRCROOT)/gap5/io_utils.h
editor_search.o: $(SRCROOT)/gap5/tg_anno.h
editor_search.o: $(SRCROOT)/gap5/tg_bin.h
editor_search.o: $(SRCROOT)/gap5/tg_cache_item.h
editor_search.o: $(SRCROOT)/gap5/tg_contig.h
editor_search.o: $(SRCROOT)/gap5/tg_gio.h
editor_search.o: $(SRCROOT)/gap5/tg_iface.h
editor_search.o: $(SRCROOT)/gap5/tg_library.h
editor_search.o: $(SRCROOT)/gap5/tg_register.h
editor_search.o: $(SRCROOT)/gap5/tg_scaffold.h
editor_search.o: $(SRCROOT)/gap5/tg_sequence.h
editor_search.o: $(SRCROOT)/gap5/tg_struct.h
editor_search.o: $(SRCROOT)/gap5/tg_tcl.h
editor_search.o: $(SRCROOT)/gap5/tg_track.h
editor_search.o: $(SRCROOT)/gap5/tg_utils.h
editor_search.o: $(SRCROOT)/gap5/tkEdNames.h
editor_search.o: $(SRCROOT)/gap5/tkEditor.h
editor_search.o: $(SRCROOT)/seq_utils/dna_utils.h
editor_search.o: $(SRCROOT)/seq_utils/search_utils.h
editor_search.o: $(SRCROOT)/tk_utils/intrinsic_type.h
editor_search.o: $(SRCROOT)/tk_utils/sheet.h
editor_search.o: $(SRCROOT)/tk_utils/tkSheet.h
editor_search.o: $(SRCROOT)/tk_utils/tkSheet_common.h
editor_search.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
editor_view.o: $(PWD)/staden_config.h
editor_view.o: $(SRCROOT)/Misc/array.h
editor_view.o: $(SRCROOT)/Misc/dstring.h
editor_view.o: $(SRCROOT)/Misc/misc.h
editor_view.o: $(SRCROOT)/Misc/os.h
editor_view.o: $(SRCROOT)/Misc/tree.h
editor_view.o: $(SRCROOT)/Misc/xalloc.h
editor_view.o: $(SRCROOT)/Misc/xerror.h
editor_view.o: $(SRCROOT)/gap5/active_tags.h
editor_view.o: $(SRCROOT)/gap5/b+tree2.h
editor_view.o: $(SRCROOT)/gap5/consensus.h
editor_view.o: $(SRCROOT)/gap5/depad_seq_tree.h
editor_view.o: $(SRCROOT)/gap5/editor_view.h
editor_view.o: $(SRCROOT)/gap5/g-alloc.h
editor_view.o: $(SRCROOT)/gap5/g-connect.h
editor_view.o: $(SRCROOT)/gap5/g-db.h
editor_view.o: $(SRCROOT)/gap5/g-defs.h
editor_view.o: $(SRCROOT)/gap5/g-error.h
editor_view.o: $(SRCROOT)/gap5/g-filedefs.h
editor_view.o: $(SRCROOT)/gap5/g-io.h
editor_view.o: $(SRCROOT)/gap5/g-misc.h
editor_view.o: $(SRCROOT)/gap5/g-os.h
editor_view.o: $(SRCROOT)/gap5/g-request.h
editor_view.o: $(SRCROOT)/gap5/g-struct.h
editor_view.o: $(SRCROOT)/gap5/g.h
editor_view.o: $(SRCROOT)/gap5/gap_globals.h
editor_view.o: $(SRCROOT)/gap5/hache_table.h
editor_view.o: $(SRCROOT)/gap5/io_utils.h
editor_view.o: $(SRCROOT)/gap5/qual.h
editor_view.o: $(SRCROOT)/gap5/qualIO.h
editor_view.o: $(SRCROOT)/gap5/tagdb.h
editor_view.o: $(SRCROOT)/gap5/tg_anno.h
editor_view.o: $(SRCROOT)/gap5/tg_bin.h
editor_view.o: $(SRCROOT)/gap5/tg_cache_item.h
editor_view.o: $(SRCROOT)/gap5/tg_contig.h
editor_view.o: $(SRCROOT)/gap5/tg_gio.h
editor_view.o: $(SRCROOT)/gap5/tg_iface.h
editor_view.o: $(SRCROOT)/gap5/tg_library.h
editor_view.o: $(SRCROOT)/gap5/tg_register.h
editor_view.o: $(SRCROOT)/gap5/tg_scaffold.h
editor_view.o: $(SRCROOT)/gap5/tg_sequence.h
editor_view.o: $(SRCROOT)/gap5/tg_struct.h
editor_view.o: $(SRCROOT)/gap5/tg_tcl.h
editor_view.o: $(SRCROOT)/gap5/tg_track.h
editor_view.o: $(SRCROOT)/gap5/tg_utils.h
editor_view.o: $(SRCROOT)/gap5/tkEdNames.h
editor_view.o: $(SRCROOT)/gap5/tkEditor.h
editor_view.o: $(SRCROOT)/gap5/tman_display.h
editor_view.o: $(SRCROOT)/gap5/tman_interface.h
editor_view.o: $(SRCROOT)/seq_utils/align.h
editor_view.o: $(SRCROOT)/seq_utils/align_lib.h
editor_view.o: $(SRCROOT)/seq_utils/align_lib_old.h
editor_view.o: $(SRCROOT)/tk_utils/cli_arg.h
editor_view.o: $(SRCROOT)/tk_utils/intrinsic_type.h
editor_view.o: $(SRCROOT)/tk_utils/postscript.h
editor_view.o: $(SRCROOT)/tk_utils/sheet.h
editor_view.o: $(SRCROOT)/tk_utils/tcl_utils.h
editor_view.o: $(SRCROOT)/tk_utils/tkSheet.h
editor_view.o: $(SRCROOT)/tk_utils/tkSheet_common.h
editor_view.o: $(SRCROOT)/tk_utils/tkSheet_struct.h
editor_view.o: $(SRCROOT)/tk_utils/tkTrace.h
export_contigs.o: $(PWD)/staden_config.h
export_contigs.o: $(SRCROOT)/Misc/array.h
export_contigs.o: $(SRCROOT)/Misc/dstring.h
export_contigs.o: $(SRCROOT)/Misc/misc.h
export_contigs.o: $(SRCROOT)/Misc/os.h
export_contigs.o: $(SRCROOT)/Misc/string_alloc.h
export_contigs.o: $(SRCROOT)/Misc/tree.h
export_contigs.o: $(SRCROOT)/Misc/xalloc.h
export_contigs.o: $(SRCROOT)/Misc/xerror.h
export_contigs.o: $(SRCROOT)/gap5/active_tags.h
export_contigs.o: $(SRCROOT)/gap5/b+tree2.h
export_contigs.o: $(SRCROOT)/gap5/consensus.h
export_contigs.o: $(SRCROOT)/gap5/export_contigs.h
export_contigs.o: $(SRCROOT)/gap5/g-alloc.h
export_contigs.o: $(SRCROOT)/gap5/g-connect.h
export_contigs.o: $(SRCROOT)/gap5/g-db.h
export_contigs.o: $(SRCROOT)/gap5/g-defs.h
export_contigs.o: $(SRCROOT)/gap5/g-error.h
export_contigs.o: $(SRCROOT)/gap5/g-filedefs.h
export_contigs.o: $(SRCROOT)/gap5/g-io.h
export_contigs.o: $(SRCROOT)/gap5/g-misc.h
export_contigs.o: $(SRCROOT)/gap5/g-os.h
export_contigs.o: $(SRCROOT)/gap5/g-request.h
export_contigs.o: $(SRCROOT)/gap5/g-struct.h
export_contigs.o: $(SRCROOT)/gap5/g.h
export_contigs.o: $(SRCROOT)/gap5/gap_cli_arg.h
export_contigs.o: $(SRCROOT)/gap5/hache_table.h
export_contigs.o: $(SRCROOT)/gap5/io_utils.h
export_contigs.o: $(SRCROOT)/gap5/list_proc.h
export_contigs.o: $(SRCROOT)/gap5/newgap_structs.h
export_contigs.o: $(SRCROOT)/gap5/sam_index.h
export_contigs.o: $(SRCROOT)/gap5/tagdb.h
export_contigs.o: $(SRCROOT)/gap5/tg_anno.h
export_contigs.o: $(SRCROOT)/gap5/tg_bin.h
export_contigs.o: $(SRCROOT)/gap5/tg_cache_item.h
export_contigs.o: $(SRCROOT)/gap5/tg_contig.h
export_contigs.o: $(SRCROOT)/gap5/tg_gio.h
export_contigs.o: $(SRCROOT)/gap5/tg_iface.h
export_contigs.o: $(SRCROOT)/gap5/tg_index.h
export_contigs.o: $(SRCROOT)/gap5/tg_library.h
export_contigs.o: $(SRCROOT)/gap5/tg_register.h
export_contigs.o: $(SRCROOT)/gap5/tg_scaffold.h
export_contigs.o: $(SRCROOT)/gap5/tg_sequence.h
export_contigs.o: $(SRCROOT)/gap5/tg_struct.h
export_contigs.o: $(SRCROOT)/gap5/tg_tcl.h
export_contigs.o: $(SRCROOT)/gap5/tg_track.h
export_contigs.o: $(SRCROOT)/gap5/tg_utils.h
export_contigs.o: $(SRCROOT)/seq_utils/dna_utils.h
export_contigs.o: $(SRCROOT)/tk_utils/intrinsic_type.h
export_snps.o: $(PWD)/staden_config.h
export_snps.o: $(SRCROOT)/Misc/array.h
export_snps.o: $(SRCROOT)/Misc/dstring.h
export_snps.o: $(SRCROOT)/Misc/misc.h
export_snps.o: $(SRCROOT)/Misc/os.h
export_snps.o: $(SRCROOT)/Misc/tree.h
export_snps.o: $(SRCROOT)/Misc/xalloc.h
export_snps.o: $(SRCROOT)/Misc/xerror.h
export_snps.o: $(SRCROOT)/gap5/b+tree2.h
export_snps.o: $(SRCROOT)/gap5/consensus.h
export_snps.o: $(SRCROOT)/gap5/export_snps.h
export_snps.o: $(SRCROOT)/gap5/g-alloc.h
export_snps.o: $(SRCROOT)/gap5/g-connect.h
export_snps.o: $(SRCROOT)/gap5/g-db.h
export_snps.o: $(SRCROOT)/gap5/g-defs.h
export_snps.o: $(SRCROOT)/gap5/g-error.h
export_snps.o: $(SRCROOT)/gap5/g-filedefs.h
export_snps.o: $(SRCROOT)/gap5/g-io.h
export_snps.o: $(SRCROOT)/gap5/g-misc.h
export_snps.o: $(SRCROOT)/gap5/g-os.h
export_snps.o: $(SRCROOT)/gap5/g-request.h
export_snps.o: $(SRCROOT)/gap5/g-struct.h
export_snps.o: $(SRCROOT)/gap5/g.h
export_snps.o: $(SRCROOT)/gap5/gap_cli_arg.h
export_snps.o: $(SRCROOT)/gap5/hache_table.h
export_snps.o: $(SRCROOT)/gap5/io_utils.h
export_snps.o: $(SRCROOT)/gap5/list_proc.h
export_snps.o: $(SRCROOT)/gap5/tg_anno.h
export_snps.o: $(SRCROOT)/gap5/tg_bin.h
export_snps.o: $(SRCROOT)/gap5/tg_cache_item.h
export_snps.o: $(SRCROOT)/gap5/tg_contig.h
export_snps.o: $(SRCROOT)/gap5/tg_gio.h
export_snps.o: $(SRCROOT)/gap5/tg_iface.h
export_snps.o: $(SRCROOT)/gap5/tg_library.h
export_snps.o: $(SRCROOT)/gap5/tg_register.h
export_snps.o: $(SRCROOT)/gap5/tg_scaffold.h
export_snps.o: $(SRCROOT)/gap5/tg_sequence.h
export_snps.o: $(SRCROOT)/gap5/tg_struct.h
export_snps.o: $(SRCROOT)/gap5/tg_tcl.h
export_snps.o: $(SRCROOT)/gap5/tg_track.h
export_snps.o: $(SRCROOT)/gap5/tg_utils.h
fasta.o: $(PWD)/staden_config.h
fasta.o: $(SRCROOT)/Misc/array.h
fasta.o: $(SRCROOT)/Misc/misc.h
fasta.o: $(SRCROOT)/Misc/os.h
fasta.o: $(SRCROOT)/Misc/string_alloc.h
fasta.o: $(SRCROOT)/Misc/tree.h
fasta.o: $(SRCROOT)/Misc/xalloc.h
fasta.o: $(SRCROOT)/Misc/xerror.h
fasta.o: $(SRCROOT)/gap5/b+tree2.h
fasta.o: $(SRCROOT)/gap5/fasta.h
fasta.o: $(SRCROOT)/gap5/g-alloc.h
fasta.o: $(SRCROOT)/gap5/g-connect.h
fasta.o: $(SRCROOT)/gap5/g-db.h
fasta.o: $(SRCROOT)/gap5/g-defs.h
fasta.o: $(SRCROOT)/gap5/g-error.h
fasta.o: $(SRCROOT)/gap5/g-filedefs.h
fasta.o: $(SRCROOT)/gap5/g-io.h
fasta.o: $(SRCROOT)/gap5/g-misc.h
fasta.o: $(SRCROOT)/gap5/g-os.h
fasta.o: $(SRCROOT)/gap5/g-request.h
fasta.o: $(SRCROOT)/gap5/g-struct.h
fasta.o: $(SRCROOT)/gap5/g.h
fasta.o: $(SRCROOT)/gap5/hache_table.h
fasta.o: $(SRCROOT)/gap5/io_utils.h
fasta.o: $(SRCROOT)/gap5/tg_anno.h
fasta.o: $(SRCROOT)/gap5/tg_bin.h
fasta.o: $(SRCROOT)/gap5/tg_cache_item.h
fasta.o: $(SRCROOT)/gap5/tg_contig.h
fasta.o: $(SRCROOT)/gap5/tg_gio.h
fasta.o: $(SRCROOT)/gap5/tg_iface.h
fasta.o: $(SRCROOT)/gap5/tg_index.h
fasta.o: $(SRCROOT)/gap5/tg_index_common.h
fasta.o: $(SRCROOT)/gap5/tg_library.h
fasta.o: $(SRCROOT)/gap5/tg_register.h
fasta.o: $(SRCROOT)/gap5/tg_scaffold.h
fasta.o: $(SRCROOT)/gap5/tg_sequence.h
fasta.o: $(SRCROOT)/gap5/tg_struct.h
fasta.o: $(SRCROOT)/gap5/tg_tcl.h
fasta.o: $(SRCROOT)/gap5/tg_track.h
fasta.o: $(SRCROOT)/gap5/tg_utils.h
fasta.o: $(SRCROOT)/tk_utils/text_output.h
fij.o: $(PWD)/staden_config.h
fij.o: $(SRCROOT)/Misc/array.h
fij.o: $(SRCROOT)/Misc/dstring.h
fij.o: $(SRCROOT)/Misc/misc.h
fij.o: $(SRCROOT)/Misc/os.h
fij.o: $(SRCROOT)/Misc/tree.h
fij.o: $(SRCROOT)/Misc/xalloc.h
fij.o: $(SRCROOT)/Misc/xerror.h
fij.o: $(SRCROOT)/gap5/b+tree2.h
fij.o: $(SRCROOT)/gap5/consen.h
fij.o: $(SRCROOT)/gap5/consensus.h
fij.o: $(SRCROOT)/gap5/contig_selector.h
fij.o: $(SRCROOT)/gap5/cs-object.h
fij.o: $(SRCROOT)/gap5/editor_join.h
fij.o: $(SRCROOT)/gap5/editor_view.h
fij.o: $(SRCROOT)/gap5/fij.h
fij.o: $(SRCROOT)/gap5/g-alloc.h
fij.o: $(SRCROOT)/gap5/g-connect.h
fij.o: $(SRCROOT)/gap5/g-db.h
fij.o: $(SRCROOT)/gap5/g-defs.h
fij.o: $(SRCROOT)/gap5/g-error.h
fij.o: $(SRCROOT)/gap5/g-filedefs.h
fij.o: $(SRCROOT)/gap5/g-io.h
fij.o: $(SRCROOT)/gap5/g-misc.h
fij.o: $(SRCROOT)/gap5/g-os.h
fij.o: $(SRCROOT)/gap5/g-request.h
fij.o: $(SRCROOT)/gap5/g-struct.h
fij.o: $(SRCROOT)/gap5/g.h
fij.o: $(SRCROOT)/gap5/gap4_compat.h
fij.o: $(SRCROOT)/gap5/gap_globals.h
fij.o: $(SRCROOT)/gap5/hache_table.h
fij.o: $(SRCROOT)/gap5/hash_lib.h
fij.o: $(SRCROOT)/gap5/io_utils.h
fij.o: $(SRCROOT)/gap5/list.h
fij.o: $(SRCROOT)/gap5/newgap_cmds.h
fij.o: $(SRCROOT)/gap5/newgap_structs.h
fij.o: $(SRCROOT)/gap5/readpair.h
fij.o: $(SRCROOT)/gap5/tg_anno.h
fij.o: $(SRCROOT)/gap5/tg_bin.h
fij.o: $(SRCROOT)/gap5/tg_cache_item.h
fij.o: $(SRCROOT)/gap5/tg_contig.h
fij.o: $(SRCROOT)/gap5/tg_gio.h
fij.o: $(SRCROOT)/gap5/tg_iface.h
fij.o: $(SRCROOT)/gap5/tg_library.h
fij.o: $(SRCROOT)/gap5/tg_register.h
fij.o: $(SRCROOT)/gap5/tg_scaffold.h
fij.o: $(SRCROOT)/gap5/tg_sequence.h
fij.o: $(SRCROOT)/gap5/tg_struct.h
fij.o: $(SRCROOT)/gap5/tg_tcl.h
fij.o: $(SRCROOT)/gap5/tg_track.h
fij.o: $(SRCROOT)/gap5/tg_utils.h
fij.o: $(SRCROOT)/gap5/tk-io-reg.h
fij.o: $(SRCROOT)/gap5/tkEdNames.h
fij.o: $(SRCROOT)/gap5/tkEditor.h
fij.o: $(SRCROOT)/seq_utils/align_lib.h
fij.o: $(SRCROOT)/tk_utils/canvas_box.h
fij.o: $(SRCROOT)/tk_utils/intrinsic_type.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
find_haplotypes.o: $(PWD)/staden_config.h
find_haplotypes.o: $(SRCROOT)/Misc/array.h
find_haplotypes.o: $(SRCROOT)/Misc/misc.h
find_haplotypes.o: $(SRCROOT)/Misc/os.h
find_haplotypes.o: $(SRCROOT)/Misc/tree.h
find_haplotypes.o: $(SRCROOT)/Misc/xalloc.h
find_haplotypes.o: $(SRCROOT)/Misc/xerror.h
find_haplotypes.o: $(SRCROOT)/gap5/b+tree2.h
find_haplotypes.o: $(SRCROOT)/gap5/consensus.h
find_haplotypes.o: $(SRCROOT)/gap5/find_haplotypes.h
find_haplotypes.o: $(SRCROOT)/gap5/g-alloc.h
find_haplotypes.o: $(SRCROOT)/gap5/g-connect.h
find_haplotypes.o: $(SRCROOT)/gap5/g-db.h
find_haplotypes.o: $(SRCROOT)/gap5/g-defs.h
find_haplotypes.o: $(SRCROOT)/gap5/g-error.h
find_haplotypes.o: $(SRCROOT)/gap5/g-filedefs.h
find_haplotypes.o: $(SRCROOT)/gap5/g-io.h
find_haplotypes.o: $(SRCROOT)/gap5/g-misc.h
find_haplotypes.o: $(SRCROOT)/gap5/g-os.h
find_haplotypes.o: $(SRCROOT)/gap5/g-request.h
find_haplotypes.o: $(SRCROOT)/gap5/g-struct.h
find_haplotypes.o: $(SRCROOT)/gap5/g.h
find_haplotypes.o: $(SRCROOT)/gap5/hache_table.h
find_haplotypes.o: $(SRCROOT)/gap5/interval_tree.h
find_haplotypes.o: $(SRCROOT)/gap5/io_utils.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_anno.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_bin.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_cache_item.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_contig.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_gio.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_iface.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_library.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_register.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_scaffold.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_sequence.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_struct.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_tcl.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_track.h
find_haplotypes.o: $(SRCROOT)/gap5/tg_utils.h
find_haplotypes.o: $(SRCROOT)/seq_utils/align.h
find_haplotypes.o: $(SRCROOT)/seq_utils/align_lib_old.h
find_haplotypes.o: $(SRCROOT)/seq_utils/dna_utils.h
find_oligo.o: $(PWD)/staden_config.h
find_oligo.o: $(SRCROOT)/Misc/array.h
find_oligo.o: $(SRCROOT)/Misc/misc.h
find_oligo.o: $(SRCROOT)/Misc/os.h
find_oligo.o: $(SRCROOT)/Misc/tree.h
find_oligo.o: $(SRCROOT)/Misc/xalloc.h
find_oligo.o: $(SRCROOT)/Misc/xerror.h
find_oligo.o: $(SRCROOT)/gap5/b+tree2.h
find_oligo.o: $(SRCROOT)/gap5/consensus.h
find_oligo.o: $(SRCROOT)/gap5/contig_selector.h
find_oligo.o: $(SRCROOT)/gap5/cs-object.h
find_oligo.o: $(SRCROOT)/gap5/editor_view.h
find_oligo.o: $(SRCROOT)/gap5/g-alloc.h
find_oligo.o: $(SRCROOT)/gap5/g-connect.h
find_oligo.o: $(SRCROOT)/gap5/g-db.h
find_oligo.o: $(SRCROOT)/gap5/g-defs.h
find_oligo.o: $(SRCROOT)/gap5/g-error.h
find_oligo.o: $(SRCROOT)/gap5/g-filedefs.h
find_oligo.o: $(SRCROOT)/gap5/g-io.h
find_oligo.o: $(SRCROOT)/gap5/g-misc.h
find_oligo.o: $(SRCROOT)/gap5/g-os.h
find_oligo.o: $(SRCROOT)/gap5/g-request.h
find_oligo.o: $(SRCROOT)/gap5/g-struct.h
find_oligo.o: $(SRCROOT)/gap5/g.h
find_oligo.o: $(SRCROOT)/gap5/gap4_compat.h
find_oligo.o: $(SRCROOT)/gap5/gap_globals.h
find_oligo.o: $(SRCROOT)/gap5/hache_table.h
find_oligo.o: $(SRCROOT)/gap5/io_utils.h
find_oligo.o: $(SRCROOT)/gap5/list_proc.h
find_oligo.o: $(SRCROOT)/gap5/tagdb.h
find_oligo.o: $(SRCROOT)/gap5/template_display.h
find_oligo.o: $(SRCROOT)/gap5/tg_anno.h
find_oligo.o: $(SRCROOT)/gap5/tg_bin.h
find_oligo.o: $(SRCROOT)/gap5/tg_cache_item.h
find_oligo.o: $(SRCROOT)/gap5/tg_contig.h
find_oligo.o: $(SRCROOT)/gap5/tg_gio.h
find_oligo.o: $(SRCROOT)/gap5/tg_iface.h
find_oligo.o: $(SRCROOT)/gap5/tg_library.h
find_oligo.o: $(SRCROOT)/gap5/tg_register.h
find_oligo.o: $(SRCROOT)/gap5/tg_scaffold.h
find_oligo.o: $(SRCROOT)/gap5/tg_sequence.h
find_oligo.o: $(SRCROOT)/gap5/tg_struct.h
find_oligo.o: $(SRCROOT)/gap5/tg_tcl.h
find_oligo.o: $(SRCROOT)/gap5/tg_track.h
find_oligo.o: $(SRCROOT)/gap5/tg_utils.h
find_oligo.o: $(SRCROOT)/gap5/tk-io-reg.h
find_oligo.o: $(SRCROOT)/gap5/tkEdNames.h
find_oligo.o: $(SRCROOT)/gap5/tkEditor.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/intrinsic_type.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_repeats.o: $(PWD)/staden_config.h
find_repeats.o: $(SRCROOT)/Misc/array.h
find_repeats.o: $(SRCROOT)/Misc/misc.h
find_repeats.o: $(SRCROOT)/Misc/os.h
find_repeats.o: $(SRCROOT)/Misc/tree.h
find_repeats.o: $(SRCROOT)/Misc/xalloc.h
find_repeats.o: $(SRCROOT)/Misc/xerror.h
find_repeats.o: $(SRCROOT)/gap5/b+tree2.h
find_repeats.o: $(SRCROOT)/gap5/check_assembly.h
find_repeats.o: $(SRCROOT)/gap5/consen.h
find_repeats.o: $(SRCROOT)/gap5/consensus.h
find_repeats.o: $(SRCROOT)/gap5/contig_selector.h
find_repeats.o: $(SRCROOT)/gap5/cs-object.h
find_repeats.o: $(SRCROOT)/gap5/editor_view.h
find_repeats.o: $(SRCROOT)/gap5/find_oligo.h
find_repeats.o: $(SRCROOT)/gap5/find_repeats.h
find_repeats.o: $(SRCROOT)/gap5/g-alloc.h
find_repeats.o: $(SRCROOT)/gap5/g-connect.h
find_repeats.o: $(SRCROOT)/gap5/g-db.h
find_repeats.o: $(SRCROOT)/gap5/g-defs.h
find_repeats.o: $(SRCROOT)/gap5/g-error.h
find_repeats.o: $(SRCROOT)/gap5/g-filedefs.h
find_repeats.o: $(SRCROOT)/gap5/g-io.h
find_repeats.o: $(SRCROOT)/gap5/g-misc.h
find_repeats.o: $(SRCROOT)/gap5/g-os.h
find_repeats.o: $(SRCROOT)/gap5/g-request.h
find_repeats.o: $(SRCROOT)/gap5/g-struct.h
find_repeats.o: $(SRCROOT)/gap5/g.h
find_repeats.o: $(SRCROOT)/gap5/gap4_compat.h
find_repeats.o: $(SRCROOT)/gap5/gap_globals.h
find_repeats.o: $(SRCROOT)/gap5/gap_hash.h
find_repeats.o: $(SRCROOT)/gap5/hache_table.h
find_repeats.o: $(SRCROOT)/gap5/io_utils.h
find_repeats.o: $(SRCROOT)/gap5/tg_anno.h
find_repeats.o: $(SRCROOT)/gap5/tg_bin.h
find_repeats.o: $(SRCROOT)/gap5/tg_cache_item.h
find_repeats.o: $(SRCROOT)/gap5/tg_contig.h
find_repeats.o: $(SRCROOT)/gap5/tg_gio.h
find_repeats.o: $(SRCROOT)/gap5/tg_iface.h
find_repeats.o: $(SRCROOT)/gap5/tg_library.h
find_repeats.o: $(SRCROOT)/gap5/tg_register.h
find_repeats.o: $(SRCROOT)/gap5/tg_scaffold.h
find_repeats.o: $(SRCROOT)/gap5/tg_sequence.h
find_repeats.o: $(SRCROOT)/gap5/tg_struct.h
find_repeats.o: $(SRCROOT)/gap5/tg_tcl.h
find_repeats.o: $(SRCROOT)/gap5/tg_track.h
find_repeats.o: $(SRCROOT)/gap5/tg_utils.h
find_repeats.o: $(SRCROOT)/gap5/tk-io-reg.h
find_repeats.o: $(SRCROOT)/gap5/tkEdNames.h
find_repeats.o: $(SRCROOT)/gap5/tkEditor.h
find_repeats.o: $(SRCROOT)/seq_utils/dna_utils.h
find_repeats.o: $(SRCROOT)/tk_utils/canvas_box.h
find_repeats.o: $(SRCROOT)/tk_utils/intrinsic_type.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
g-alloc.o: $(PWD)/staden_config.h
g-alloc.o: $(SRCROOT)/Misc/os.h
g-alloc.o: $(SRCROOT)/gap5/g-alloc.h
g-connect.o: $(PWD)/staden_config.h
g-connect.o: $(SRCROOT)/Misc/array.h
g-connect.o: $(SRCROOT)/Misc/os.h
g-connect.o: $(SRCROOT)/Misc/xerror.h
g-connect.o: $(SRCROOT)/gap5/g-alloc.h
g-connect.o: $(SRCROOT)/gap5/g-connect.h
g-connect.o: $(SRCROOT)/gap5/g-db.h
g-connect.o: $(SRCROOT)/gap5/g-defs.h
g-connect.o: $(SRCROOT)/gap5/g-error.h
g-connect.o: $(SRCROOT)/gap5/g-filedefs.h
g-connect.o: $(SRCROOT)/gap5/g-os.h
g-connect.o: $(SRCROOT)/gap5/g-struct.h
g-connect.o: $(SRCROOT)/gap5/hache_table.h
g-db.o: $(PWD)/staden_config.h
g-db.o: $(SRCROOT)/Misc/array.h
g-db.o: $(SRCROOT)/Misc/os.h
g-db.o: $(SRCROOT)/Misc/xerror.h
g-db.o: $(SRCROOT)/gap5/g-alloc.h
g-db.o: $(SRCROOT)/gap5/g-db.h
g-db.o: $(SRCROOT)/gap5/g-defs.h
g-db.o: $(SRCROOT)/gap5/g-error.h
g-db.o: $(SRCROOT)/gap5/g-filedefs.h
g-db.o: $(SRCROOT)/gap5/g-files.h
g-db.o: $(SRCROOT)/gap5/g-io.h
g-db.o: $(SRCROOT)/gap5/g-os.h
g-db.o: $(SRCROOT)/gap5/g-request.h
g-db.o: $(SRCROOT)/gap5/g-struct.h
g-db.o: $(SRCROOT)/gap5/hache_table.h
g-error.o: $(SRCROOT)/Misc/xerror.h
g-error.o: $(SRCROOT)/gap5/g-error.h
g-error.o: $(SRCROOT)/gap5/g-misc.h
g-files.o: $(PWD)/staden_config.h
g-files.o: $(SRCROOT)/Misc/array.h
g-files.o: $(SRCROOT)/Misc/misc.h
g-files.o: $(SRCROOT)/Misc/os.h
g-files.o: $(SRCROOT)/Misc/xalloc.h
g-files.o: $(SRCROOT)/Misc/xerror.h
g-files.o: $(SRCROOT)/gap5/g-alloc.h
g-files.o: $(SRCROOT)/gap5/g-db.h
g-files.o: $(SRCROOT)/gap5/g-defs.h
g-files.o: $(SRCROOT)/gap5/g-error.h
g-files.o: $(SRCROOT)/gap5/g-filedefs.h
g-files.o: $(SRCROOT)/gap5/g-files.h
g-files.o: $(SRCROOT)/gap5/g-io.h
g-files.o: $(SRCROOT)/gap5/g-os.h
g-files.o: $(SRCROOT)/gap5/g-struct.h
g-files.o: $(SRCROOT)/gap5/hache_table.h
g-io.o: $(PWD)/staden_config.h
g-io.o: $(SRCROOT)/Misc/array.h
g-io.o: $(SRCROOT)/Misc/os.h
g-io.o: $(SRCROOT)/Misc/xerror.h
g-io.o: $(SRCROOT)/gap5/g-alloc.h
g-io.o: $(SRCROOT)/gap5/g-filedefs.h
g-io.o: $(SRCROOT)/gap5/g-files.h
g-io.o: $(SRCROOT)/gap5/g-io.h
g-io.o: $(SRCROOT)/gap5/g-os.h
g-io.o: $(SRCROOT)/gap5/g-struct.h
g-io.o: $(SRCROOT)/gap5/hache_table.h
g-request.o: $(PWD)/staden_config.h
g-request.o: $(SRCROOT)/Misc/array.h
g-request.o: $(SRCROOT)/Misc/os.h
g-request.o: $(SRCROOT)/Misc/xalloc.h
g-request.o: $(SRCROOT)/Misc/xerror.h
g-request.o: $(SRCROOT)/gap5/g-alloc.h
g-request.o: $(SRCROOT)/gap5/g-db.h
g-request.o: $(SRCROOT)/gap5/g-defs.h
g-request.o: $(SRCROOT)/gap5/g-error.h
g-request.o: $(SRCROOT)/gap5/g-filedefs.h
g-request.o: $(SRCROOT)/gap5/g-files.h
g-request.o: $(SRCROOT)/gap5/g-misc.h
g-request.o: $(SRCROOT)/gap5/g-os.h
g-request.o: $(SRCROOT)/gap5/g-request.h
g-request.o: $(SRCROOT)/gap5/g-struct.h
g-request.o: $(SRCROOT)/gap5/hache_table.h
g-struct.o: $(PWD)/staden_config.h
g-struct.o: $(SRCROOT)/Misc/array.h
g-struct.o: $(SRCROOT)/Misc/os.h
g-struct.o: $(SRCROOT)/Misc/xalloc.h
g-struct.o: $(SRCROOT)/Misc/xerror.h
g-struct.o: $(SRCROOT)/gap5/g-alloc.h
g-struct.o: $(SRCROOT)/gap5/g-filedefs.h
g-struct.o: $(SRCROOT)/gap5/g-files.h
g-struct.o: $(SRCROOT)/gap5/g-io.h
g-struct.o: $(SRCROOT)/gap5/g-os.h
g-struct.o: $(SRCROOT)/gap5/g-struct.h
g-struct.o: $(SRCROOT)/gap5/hache_table.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)/gap5/g-error.h
gap-error.o: $(SRCROOT)/gap5/gap-error.h
gap-error.o: $(SRCROOT)/gap5/stack_dump.h
gap4_compat.o: $(PWD)/staden_config.h
gap4_compat.o: $(SRCROOT)/Misc/array.h
gap4_compat.o: $(SRCROOT)/Misc/misc.h
gap4_compat.o: $(SRCROOT)/Misc/os.h
gap4_compat.o: $(SRCROOT)/Misc/tree.h
gap4_compat.o: $(SRCROOT)/Misc/xalloc.h
gap4_compat.o: $(SRCROOT)/Misc/xerror.h
gap4_compat.o: $(SRCROOT)/gap5/b+tree2.h
gap4_compat.o: $(SRCROOT)/gap5/consensus.h
gap4_compat.o: $(SRCROOT)/gap5/g-alloc.h
gap4_compat.o: $(SRCROOT)/gap5/g-connect.h
gap4_compat.o: $(SRCROOT)/gap5/g-db.h
gap4_compat.o: $(SRCROOT)/gap5/g-defs.h
gap4_compat.o: $(SRCROOT)/gap5/g-error.h
gap4_compat.o: $(SRCROOT)/gap5/g-filedefs.h
gap4_compat.o: $(SRCROOT)/gap5/g-io.h
gap4_compat.o: $(SRCROOT)/gap5/g-misc.h
gap4_compat.o: $(SRCROOT)/gap5/g-os.h
gap4_compat.o: $(SRCROOT)/gap5/g-request.h
gap4_compat.o: $(SRCROOT)/gap5/g-struct.h
gap4_compat.o: $(SRCROOT)/gap5/g.h
gap4_compat.o: $(SRCROOT)/gap5/gap4_compat.h
gap4_compat.o: $(SRCROOT)/gap5/hache_table.h
gap4_compat.o: $(SRCROOT)/gap5/io_utils.h
gap4_compat.o: $(SRCROOT)/gap5/tg_anno.h
gap4_compat.o: $(SRCROOT)/gap5/tg_bin.h
gap4_compat.o: $(SRCROOT)/gap5/tg_cache_item.h
gap4_compat.o: $(SRCROOT)/gap5/tg_contig.h
gap4_compat.o: $(SRCROOT)/gap5/tg_gio.h
gap4_compat.o: $(SRCROOT)/gap5/tg_iface.h
gap4_compat.o: $(SRCROOT)/gap5/tg_library.h
gap4_compat.o: $(SRCROOT)/gap5/tg_register.h
gap4_compat.o: $(SRCROOT)/gap5/tg_scaffold.h
gap4_compat.o: $(SRCROOT)/gap5/tg_sequence.h
gap4_compat.o: $(SRCROOT)/gap5/tg_struct.h
gap4_compat.o: $(SRCROOT)/gap5/tg_tcl.h
gap4_compat.o: $(SRCROOT)/gap5/tg_track.h
gap4_compat.o: $(SRCROOT)/gap5/tg_utils.h
gap_canvas_box.o: $(PWD)/staden_config.h
gap_canvas_box.o: $(SRCROOT)/Misc/array.h
gap_canvas_box.o: $(SRCROOT)/Misc/misc.h
gap_canvas_box.o: $(SRCROOT)/Misc/os.h
gap_canvas_box.o: $(SRCROOT)/Misc/tree.h
gap_canvas_box.o: $(SRCROOT)/Misc/xalloc.h
gap_canvas_box.o: $(SRCROOT)/Misc/xerror.h
gap_canvas_box.o: $(SRCROOT)/gap5/b+tree2.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-alloc.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-connect.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-db.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-defs.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-error.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-filedefs.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-io.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-misc.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-os.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-request.h
gap_canvas_box.o: $(SRCROOT)/gap5/g-struct.h
gap_canvas_box.o: $(SRCROOT)/gap5/g.h
gap_canvas_box.o: $(SRCROOT)/gap5/gap4_compat.h
gap_canvas_box.o: $(SRCROOT)/gap5/gap_globals.h
gap_canvas_box.o: $(SRCROOT)/gap5/hache_table.h
gap_canvas_box.o: $(SRCROOT)/gap5/io_utils.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_anno.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_bin.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_cache_item.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_contig.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_gio.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_iface.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_library.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_register.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_scaffold.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_sequence.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_struct.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_tcl.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_track.h
gap_canvas_box.o: $(SRCROOT)/gap5/tg_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/misc.h
gap_cli_arg.o: $(SRCROOT)/Misc/os.h
gap_cli_arg.o: $(SRCROOT)/Misc/tree.h
gap_cli_arg.o: $(SRCROOT)/Misc/xalloc.h
gap_cli_arg.o: $(SRCROOT)/Misc/xerror.h
gap_cli_arg.o: $(SRCROOT)/gap5/b+tree2.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-alloc.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-connect.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-db.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-defs.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-error.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-filedefs.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-io.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-misc.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-os.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-request.h
gap_cli_arg.o: $(SRCROOT)/gap5/g-struct.h
gap_cli_arg.o: $(SRCROOT)/gap5/g.h
gap_cli_arg.o: $(SRCROOT)/gap5/gap_cli_arg.h
gap_cli_arg.o: $(SRCROOT)/gap5/hache_table.h
gap_cli_arg.o: $(SRCROOT)/gap5/io_utils.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_anno.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_bin.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_cache_item.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_contig.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_gio.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_iface.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_library.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_register.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_scaffold.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_sequence.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_struct.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_tcl.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_track.h
gap_cli_arg.o: $(SRCROOT)/gap5/tg_utils.h
gap_globals.o: $(PWD)/staden_config.h
gap_globals.o: $(SRCROOT)/Misc/array.h
gap_globals.o: $(SRCROOT)/Misc/misc.h
gap_globals.o: $(SRCROOT)/Misc/os.h
gap_globals.o: $(SRCROOT)/Misc/tree.h
gap_globals.o: $(SRCROOT)/Misc/xalloc.h
gap_globals.o: $(SRCROOT)/Misc/xerror.h
gap_globals.o: $(SRCROOT)/gap5/b+tree2.h
gap_globals.o: $(SRCROOT)/gap5/consen.h
gap_globals.o: $(SRCROOT)/gap5/g-alloc.h
gap_globals.o: $(SRCROOT)/gap5/g-connect.h
gap_globals.o: $(SRCROOT)/gap5/g-db.h
gap_globals.o: $(SRCROOT)/gap5/g-defs.h
gap_globals.o: $(SRCROOT)/gap5/g-error.h
gap_globals.o: $(SRCROOT)/gap5/g-filedefs.h
gap_globals.o: $(SRCROOT)/gap5/g-io.h
gap_globals.o: $(SRCROOT)/gap5/g-misc.h
gap_globals.o: $(SRCROOT)/gap5/g-os.h
gap_globals.o: $(SRCROOT)/gap5/g-request.h
gap_globals.o: $(SRCROOT)/gap5/g-struct.h
gap_globals.o: $(SRCROOT)/gap5/g.h
gap_globals.o: $(SRCROOT)/gap5/gap_globals.h
gap_globals.o: $(SRCROOT)/gap5/hache_table.h
gap_globals.o: $(SRCROOT)/gap5/hash_lib.h
gap_globals.o: $(SRCROOT)/gap5/io_utils.h
gap_globals.o: $(SRCROOT)/gap5/notedb.h
gap_globals.o: $(SRCROOT)/gap5/tg_anno.h
gap_globals.o: $(SRCROOT)/gap5/tg_bin.h
gap_globals.o: $(SRCROOT)/gap5/tg_cache_item.h
gap_globals.o: $(SRCROOT)/gap5/tg_contig.h
gap_globals.o: $(SRCROOT)/gap5/tg_gio.h
gap_globals.o: $(SRCROOT)/gap5/tg_iface.h
gap_globals.o: $(SRCROOT)/gap5/tg_library.h
gap_globals.o: $(SRCROOT)/gap5/tg_register.h
gap_globals.o: $(SRCROOT)/gap5/tg_scaffold.h
gap_globals.o: $(SRCROOT)/gap5/tg_sequence.h
gap_globals.o: $(SRCROOT)/gap5/tg_struct.h
gap_globals.o: $(SRCROOT)/gap5/tg_tcl.h
gap_globals.o: $(SRCROOT)/gap5/tg_track.h
gap_globals.o: $(SRCROOT)/gap5/tg_utils.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/misc.h
gap_hash.o: $(SRCROOT)/Misc/os.h
gap_hash.o: $(SRCROOT)/Misc/tree.h
gap_hash.o: $(SRCROOT)/Misc/xalloc.h
gap_hash.o: $(SRCROOT)/Misc/xerror.h
gap_hash.o: $(SRCROOT)/gap5/b+tree2.h
gap_hash.o: $(SRCROOT)/gap5/consen.h
gap_hash.o: $(SRCROOT)/gap5/g-alloc.h
gap_hash.o: $(SRCROOT)/gap5/g-connect.h
gap_hash.o: $(SRCROOT)/gap5/g-db.h
gap_hash.o: $(SRCROOT)/gap5/g-defs.h
gap_hash.o: $(SRCROOT)/gap5/g-error.h
gap_hash.o: $(SRCROOT)/gap5/g-filedefs.h
gap_hash.o: $(SRCROOT)/gap5/g-io.h
gap_hash.o: $(SRCROOT)/gap5/g-misc.h
gap_hash.o: $(SRCROOT)/gap5/g-os.h
gap_hash.o: $(SRCROOT)/gap5/g-request.h
gap_hash.o: $(SRCROOT)/gap5/g-struct.h
gap_hash.o: $(SRCROOT)/gap5/g.h
gap_hash.o: $(SRCROOT)/gap5/gap_hash.h
gap_hash.o: $(SRCROOT)/gap5/hache_table.h
gap_hash.o: $(SRCROOT)/gap5/hash_lib.h
gap_hash.o: $(SRCROOT)/gap5/io_utils.h
gap_hash.o: $(SRCROOT)/gap5/tg_anno.h
gap_hash.o: $(SRCROOT)/gap5/tg_bin.h
gap_hash.o: $(SRCROOT)/gap5/tg_cache_item.h
gap_hash.o: $(SRCROOT)/gap5/tg_contig.h
gap_hash.o: $(SRCROOT)/gap5/tg_gio.h
gap_hash.o: $(SRCROOT)/gap5/tg_iface.h
gap_hash.o: $(SRCROOT)/gap5/tg_library.h
gap_hash.o: $(SRCROOT)/gap5/tg_register.h
gap_hash.o: $(SRCROOT)/gap5/tg_scaffold.h
gap_hash.o: $(SRCROOT)/gap5/tg_sequence.h
gap_hash.o: $(SRCROOT)/gap5/tg_struct.h
gap_hash.o: $(SRCROOT)/gap5/tg_tcl.h
gap_hash.o: $(SRCROOT)/gap5/tg_track.h
gap_hash.o: $(SRCROOT)/gap5/tg_utils.h
gap_hash.o: $(SRCROOT)/seq_utils/align_lib.h
gap_hash.o: $(SRCROOT)/seq_utils/dna_utils.h
gap_range.o: $(PWD)/staden_config.h
gap_range.o: $(SRCROOT)/Misc/array.h
gap_range.o: $(SRCROOT)/Misc/misc.h
gap_range.o: $(SRCROOT)/Misc/os.h
gap_range.o: $(SRCROOT)/Misc/tree.h
gap_range.o: $(SRCROOT)/Misc/xalloc.h
gap_range.o: $(SRCROOT)/Misc/xerror.h
gap_range.o: $(SRCROOT)/gap5/b+tree2.h
gap_range.o: $(SRCROOT)/gap5/g-alloc.h
gap_range.o: $(SRCROOT)/gap5/g-connect.h
gap_range.o: $(SRCROOT)/gap5/g-db.h
gap_range.o: $(SRCROOT)/gap5/g-defs.h
gap_range.o: $(SRCROOT)/gap5/g-error.h
gap_range.o: $(SRCROOT)/gap5/g-filedefs.h
gap_range.o: $(SRCROOT)/gap5/g-io.h
gap_range.o: $(SRCROOT)/gap5/g-misc.h
gap_range.o: $(SRCROOT)/gap5/g-os.h
gap_range.o: $(SRCROOT)/gap5/g-request.h
gap_range.o: $(SRCROOT)/gap5/g-struct.h
gap_range.o: $(SRCROOT)/gap5/g.h
gap_range.o: $(SRCROOT)/gap5/gap_cli_arg.h
gap_range.o: $(SRCROOT)/gap5/gap_range.h
gap_range.o: $(SRCROOT)/gap5/hache_table.h
gap_range.o: $(SRCROOT)/gap5/io_utils.h
gap_range.o: $(SRCROOT)/gap5/tg_anno.h
gap_range.o: $(SRCROOT)/gap5/tg_bin.h
gap_range.o: $(SRCROOT)/gap5/tg_cache_item.h
gap_range.o: $(SRCROOT)/gap5/tg_contig.h
gap_range.o: $(SRCROOT)/gap5/tg_gio.h
gap_range.o: $(SRCROOT)/gap5/tg_iface.h
gap_range.o: $(SRCROOT)/gap5/tg_library.h
gap_range.o: $(SRCROOT)/gap5/tg_register.h
gap_range.o: $(SRCROOT)/gap5/tg_scaffold.h
gap_range.o: $(SRCROOT)/gap5/tg_sequence.h
gap_range.o: $(SRCROOT)/gap5/tg_struct.h
gap_range.o: $(SRCROOT)/gap5/tg_tcl.h
gap_range.o: $(SRCROOT)/gap5/tg_track.h
gap_range.o: $(SRCROOT)/gap5/tg_utils.h
hache_table.o: $(PWD)/staden_config.h
hache_table.o: $(SRCROOT)/Misc/os.h
hache_table.o: $(SRCROOT)/gap5/hache_table.h
hash_lib.o: $(PWD)/staden_config.h
hash_lib.o: $(SRCROOT)/Misc/array.h
hash_lib.o: $(SRCROOT)/Misc/misc.h
hash_lib.o: $(SRCROOT)/Misc/os.h
hash_lib.o: $(SRCROOT)/Misc/tree.h
hash_lib.o: $(SRCROOT)/Misc/xalloc.h
hash_lib.o: $(SRCROOT)/Misc/xerror.h
hash_lib.o: $(SRCROOT)/gap5/b+tree2.h
hash_lib.o: $(SRCROOT)/gap5/consen.h
hash_lib.o: $(SRCROOT)/gap5/fij.h
hash_lib.o: $(SRCROOT)/gap5/g-alloc.h
hash_lib.o: $(SRCROOT)/gap5/g-connect.h
hash_lib.o: $(SRCROOT)/gap5/g-db.h
hash_lib.o: $(SRCROOT)/gap5/g-defs.h
hash_lib.o: $(SRCROOT)/gap5/g-error.h
hash_lib.o: $(SRCROOT)/gap5/g-filedefs.h
hash_lib.o: $(SRCROOT)/gap5/g-io.h
hash_lib.o: $(SRCROOT)/gap5/g-misc.h
hash_lib.o: $(SRCROOT)/gap5/g-os.h
hash_lib.o: $(SRCROOT)/gap5/g-request.h
hash_lib.o: $(SRCROOT)/gap5/g-struct.h
hash_lib.o: $(SRCROOT)/gap5/g.h
hash_lib.o: $(SRCROOT)/gap5/hache_table.h
hash_lib.o: $(SRCROOT)/gap5/hash_lib.h
hash_lib.o: $(SRCROOT)/gap5/io_utils.h
hash_lib.o: $(SRCROOT)/gap5/newgap_structs.h
hash_lib.o: $(SRCROOT)/gap5/tg_anno.h
hash_lib.o: $(SRCROOT)/gap5/tg_bin.h
hash_lib.o: $(SRCROOT)/gap5/tg_cache_item.h
hash_lib.o: $(SRCROOT)/gap5/tg_contig.h
hash_lib.o: $(SRCROOT)/gap5/tg_gio.h
hash_lib.o: $(SRCROOT)/gap5/tg_iface.h
hash_lib.o: $(SRCROOT)/gap5/tg_library.h
hash_lib.o: $(SRCROOT)/gap5/tg_register.h
hash_lib.o: $(SRCROOT)/gap5/tg_scaffold.h
hash_lib.o: $(SRCROOT)/gap5/tg_sequence.h
hash_lib.o: $(SRCROOT)/gap5/tg_struct.h
hash_lib.o: $(SRCROOT)/gap5/tg_tcl.h
hash_lib.o: $(SRCROOT)/gap5/tg_track.h
hash_lib.o: $(SRCROOT)/gap5/tg_utils.h
hash_lib.o: $(SRCROOT)/seq_utils/align_lib.h
hash_lib.o: $(SRCROOT)/seq_utils/dna_utils.h
import_gff.o: $(PWD)/staden_config.h
import_gff.o: $(SRCROOT)/Misc/array.h
import_gff.o: $(SRCROOT)/Misc/dstring.h
import_gff.o: $(SRCROOT)/Misc/misc.h
import_gff.o: $(SRCROOT)/Misc/os.h
import_gff.o: $(SRCROOT)/Misc/tree.h
import_gff.o: $(SRCROOT)/Misc/xalloc.h
import_gff.o: $(SRCROOT)/Misc/xerror.h
import_gff.o: $(SRCROOT)/gap5/b+tree2.h
import_gff.o: $(SRCROOT)/gap5/consensus.h
import_gff.o: $(SRCROOT)/gap5/export_contigs.h
import_gff.o: $(SRCROOT)/gap5/g-alloc.h
import_gff.o: $(SRCROOT)/gap5/g-connect.h
import_gff.o: $(SRCROOT)/gap5/g-db.h
import_gff.o: $(SRCROOT)/gap5/g-defs.h
import_gff.o: $(SRCROOT)/gap5/g-error.h
import_gff.o: $(SRCROOT)/gap5/g-filedefs.h
import_gff.o: $(SRCROOT)/gap5/g-io.h
import_gff.o: $(SRCROOT)/gap5/g-misc.h
import_gff.o: $(SRCROOT)/gap5/g-os.h
import_gff.o: $(SRCROOT)/gap5/g-request.h
import_gff.o: $(SRCROOT)/gap5/g-struct.h
import_gff.o: $(SRCROOT)/gap5/g.h
import_gff.o: $(SRCROOT)/gap5/gap_cli_arg.h
import_gff.o: $(SRCROOT)/gap5/hache_table.h
import_gff.o: $(SRCROOT)/gap5/import_gff.h
import_gff.o: $(SRCROOT)/gap5/io_utils.h
import_gff.o: $(SRCROOT)/gap5/tg_anno.h
import_gff.o: $(SRCROOT)/gap5/tg_bin.h
import_gff.o: $(SRCROOT)/gap5/tg_cache_item.h
import_gff.o: $(SRCROOT)/gap5/tg_contig.h
import_gff.o: $(SRCROOT)/gap5/tg_gio.h
import_gff.o: $(SRCROOT)/gap5/tg_iface.h
import_gff.o: $(SRCROOT)/gap5/tg_library.h
import_gff.o: $(SRCROOT)/gap5/tg_register.h
import_gff.o: $(SRCROOT)/gap5/tg_scaffold.h
import_gff.o: $(SRCROOT)/gap5/tg_sequence.h
import_gff.o: $(SRCROOT)/gap5/tg_struct.h
import_gff.o: $(SRCROOT)/gap5/tg_tcl.h
import_gff.o: $(SRCROOT)/gap5/tg_track.h
import_gff.o: $(SRCROOT)/gap5/tg_utils.h
init.o: $(PWD)/staden_config.h
init.o: $(SRCROOT)/Misc/array.h
init.o: $(SRCROOT)/Misc/misc.h
init.o: $(SRCROOT)/Misc/os.h
init.o: $(SRCROOT)/Misc/tree.h
init.o: $(SRCROOT)/Misc/xalloc.h
init.o: $(SRCROOT)/Misc/xerror.h
init.o: $(SRCROOT)/gap5/active_tags.h
init.o: $(SRCROOT)/gap5/b+tree2.h
init.o: $(SRCROOT)/gap5/g-alloc.h
init.o: $(SRCROOT)/gap5/g-connect.h
init.o: $(SRCROOT)/gap5/g-db.h
init.o: $(SRCROOT)/gap5/g-defs.h
init.o: $(SRCROOT)/gap5/g-error.h
init.o: $(SRCROOT)/gap5/g-filedefs.h
init.o: $(SRCROOT)/gap5/g-io.h
init.o: $(SRCROOT)/gap5/g-misc.h
init.o: $(SRCROOT)/gap5/g-os.h
init.o: $(SRCROOT)/gap5/g-request.h
init.o: $(SRCROOT)/gap5/g-struct.h
init.o: $(SRCROOT)/gap5/g.h
init.o: $(SRCROOT)/gap5/gap_globals.h
init.o: $(SRCROOT)/gap5/hache_table.h
init.o: $(SRCROOT)/gap5/io_utils.h
init.o: $(SRCROOT)/gap5/list.h
init.o: $(SRCROOT)/gap5/newgap_cmds.h
init.o: $(SRCROOT)/gap5/tagdb.h
init.o: $(SRCROOT)/gap5/tg_anno.h
init.o: $(SRCROOT)/gap5/tg_bin.h
init.o: $(SRCROOT)/gap5/tg_cache_item.h
init.o: $(SRCROOT)/gap5/tg_contig.h
init.o: $(SRCROOT)/gap5/tg_gio.h
init.o: $(SRCROOT)/gap5/tg_iface.h
init.o: $(SRCROOT)/gap5/tg_library.h
init.o: $(SRCROOT)/gap5/tg_register.h
init.o: $(SRCROOT)/gap5/tg_scaffold.h
init.o: $(SRCROOT)/gap5/tg_sequence.h
init.o: $(SRCROOT)/gap5/tg_struct.h
init.o: $(SRCROOT)/gap5/tg_tcl.h
init.o: $(SRCROOT)/gap5/tg_track.h
init.o: $(SRCROOT)/gap5/tg_utils.h
init.o: $(SRCROOT)/tk_utils/intrinsic_type.h
init.o: $(SRCROOT)/tk_utils/tcl_utils.h
interval_tree.o: $(SRCROOT)/Misc/tree.h
interval_tree.o: $(SRCROOT)/gap5/interval_tree.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/misc.h
list_proc.o: $(SRCROOT)/Misc/os.h
list_proc.o: $(SRCROOT)/Misc/tree.h
list_proc.o: $(SRCROOT)/Misc/xalloc.h
list_proc.o: $(SRCROOT)/Misc/xerror.h
list_proc.o: $(SRCROOT)/gap5/b+tree2.h
list_proc.o: $(SRCROOT)/gap5/g-alloc.h
list_proc.o: $(SRCROOT)/gap5/g-connect.h
list_proc.o: $(SRCROOT)/gap5/g-db.h
list_proc.o: $(SRCROOT)/gap5/g-defs.h
list_proc.o: $(SRCROOT)/gap5/g-error.h
list_proc.o: $(SRCROOT)/gap5/g-filedefs.h
list_proc.o: $(SRCROOT)/gap5/g-io.h
list_proc.o: $(SRCROOT)/gap5/g-misc.h
list_proc.o: $(SRCROOT)/gap5/g-os.h
list_proc.o: $(SRCROOT)/gap5/g-request.h
list_proc.o: $(SRCROOT)/gap5/g-struct.h
list_proc.o: $(SRCROOT)/gap5/g.h
list_proc.o: $(SRCROOT)/gap5/gap4_compat.h
list_proc.o: $(SRCROOT)/gap5/gap_globals.h
list_proc.o: $(SRCROOT)/gap5/hache_table.h
list_proc.o: $(SRCROOT)/gap5/io_utils.h
list_proc.o: $(SRCROOT)/gap5/list.h
list_proc.o: $(SRCROOT)/gap5/newgap_cmds.h
list_proc.o: $(SRCROOT)/gap5/tg_anno.h
list_proc.o: $(SRCROOT)/gap5/tg_bin.h
list_proc.o: $(SRCROOT)/gap5/tg_cache_item.h
list_proc.o: $(SRCROOT)/gap5/tg_contig.h
list_proc.o: $(SRCROOT)/gap5/tg_gio.h
list_proc.o: $(SRCROOT)/gap5/tg_iface.h
list_proc.o: $(SRCROOT)/gap5/tg_library.h
list_proc.o: $(SRCROOT)/gap5/tg_register.h
list_proc.o: $(SRCROOT)/gap5/tg_scaffold.h
list_proc.o: $(SRCROOT)/gap5/tg_sequence.h
list_proc.o: $(SRCROOT)/gap5/tg_struct.h
list_proc.o: $(SRCROOT)/gap5/tg_tcl.h
list_proc.o: $(SRCROOT)/gap5/tg_track.h
list_proc.o: $(SRCROOT)/gap5/tg_utils.h
list_proc.o: $(SRCROOT)/tk_utils/tcl_utils.h
maq.o: $(PWD)/staden_config.h
maq.o: $(SRCROOT)/Misc/array.h
maq.o: $(SRCROOT)/Misc/misc.h
maq.o: $(SRCROOT)/Misc/os.h
maq.o: $(SRCROOT)/Misc/string_alloc.h
maq.o: $(SRCROOT)/Misc/tree.h
maq.o: $(SRCROOT)/Misc/xalloc.h
maq.o: $(SRCROOT)/Misc/xerror.h
maq.o: $(SRCROOT)/gap5/b+tree2.h
maq.o: $(SRCROOT)/gap5/g-alloc.h
maq.o: $(SRCROOT)/gap5/g-connect.h
maq.o: $(SRCROOT)/gap5/g-db.h
maq.o: $(SRCROOT)/gap5/g-defs.h
maq.o: $(SRCROOT)/gap5/g-error.h
maq.o: $(SRCROOT)/gap5/g-filedefs.h
maq.o: $(SRCROOT)/gap5/g-io.h
maq.o: $(SRCROOT)/gap5/g-misc.h
maq.o: $(SRCROOT)/gap5/g-os.h
maq.o: $(SRCROOT)/gap5/g-request.h
maq.o: $(SRCROOT)/gap5/g-struct.h
maq.o: $(SRCROOT)/gap5/g.h
maq.o: $(SRCROOT)/gap5/hache_table.h
maq.o: $(SRCROOT)/gap5/io_utils.h
maq.o: $(SRCROOT)/gap5/maq.h
maq.o: $(SRCROOT)/gap5/maqmap.h
maq.o: $(SRCROOT)/gap5/tg_anno.h
maq.o: $(SRCROOT)/gap5/tg_bin.h
maq.o: $(SRCROOT)/gap5/tg_cache_item.h
maq.o: $(SRCROOT)/gap5/tg_contig.h
maq.o: $(SRCROOT)/gap5/tg_gio.h
maq.o: $(SRCROOT)/gap5/tg_iface.h
maq.o: $(SRCROOT)/gap5/tg_index.h
maq.o: $(SRCROOT)/gap5/tg_index_common.h
maq.o: $(SRCROOT)/gap5/tg_library.h
maq.o: $(SRCROOT)/gap5/tg_register.h
maq.o: $(SRCROOT)/gap5/tg_scaffold.h
maq.o: $(SRCROOT)/gap5/tg_sequence.h
maq.o: $(SRCROOT)/gap5/tg_struct.h
maq.o: $(SRCROOT)/gap5/tg_tcl.h
maq.o: $(SRCROOT)/gap5/tg_track.h
maq.o: $(SRCROOT)/gap5/tg_utils.h
maqmap.o: $(SRCROOT)/gap5/maqmap.h
newgap5_cmds.o: $(PWD)/staden_config.h
newgap5_cmds.o: $(SRCROOT)/Misc/array.h
newgap5_cmds.o: $(SRCROOT)/Misc/dstring.h
newgap5_cmds.o: $(SRCROOT)/Misc/misc.h
newgap5_cmds.o: $(SRCROOT)/Misc/os.h
newgap5_cmds.o: $(SRCROOT)/Misc/string_alloc.h
newgap5_cmds.o: $(SRCROOT)/Misc/tree.h
newgap5_cmds.o: $(SRCROOT)/Misc/xalloc.h
newgap5_cmds.o: $(SRCROOT)/Misc/xerror.h
newgap5_cmds.o: $(SRCROOT)/gap5/ace.h
newgap5_cmds.o: $(SRCROOT)/gap5/active_tags.h
newgap5_cmds.o: $(SRCROOT)/gap5/afg.h
newgap5_cmds.o: $(SRCROOT)/gap5/auto_break.h
newgap5_cmds.o: $(SRCROOT)/gap5/b+tree2.h
newgap5_cmds.o: $(SRCROOT)/gap5/baf.h
newgap5_cmds.o: $(SRCROOT)/gap5/break_contig.h
newgap5_cmds.o: $(SRCROOT)/gap5/caf.h
newgap5_cmds.o: $(SRCROOT)/gap5/check_assembly.h
newgap5_cmds.o: $(SRCROOT)/gap5/consen.h
newgap5_cmds.o: $(SRCROOT)/gap5/consensus.h
newgap5_cmds.o: $(SRCROOT)/gap5/contig_extend.h
newgap5_cmds.o: $(SRCROOT)/gap5/contig_selector.h
newgap5_cmds.o: $(SRCROOT)/gap5/cs-object.h
newgap5_cmds.o: $(SRCROOT)/gap5/depth_track.h
newgap5_cmds.o: $(SRCROOT)/gap5/dis_readings.h
newgap5_cmds.o: $(SRCROOT)/gap5/editor_join.h
newgap5_cmds.o: $(SRCROOT)/gap5/editor_view.h
newgap5_cmds.o: $(SRCROOT)/gap5/export_contigs.h
newgap5_cmds.o: $(SRCROOT)/gap5/export_snps.h
newgap5_cmds.o: $(SRCROOT)/gap5/fasta.h
newgap5_cmds.o: $(SRCROOT)/gap5/fij.h
newgap5_cmds.o: $(SRCROOT)/gap5/find_haplotypes.h
newgap5_cmds.o: $(SRCROOT)/gap5/find_oligo.h
newgap5_cmds.o: $(SRCROOT)/gap5/find_repeats.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-alloc.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-connect.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-db.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-defs.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-error.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-filedefs.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-io.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-misc.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-os.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-request.h
newgap5_cmds.o: $(SRCROOT)/gap5/g-struct.h
newgap5_cmds.o: $(SRCROOT)/gap5/g.h
newgap5_cmds.o: $(SRCROOT)/gap5/gap4_compat.h
newgap5_cmds.o: $(SRCROOT)/gap5/gap_cli_arg.h
newgap5_cmds.o: $(SRCROOT)/gap5/gap_globals.h
newgap5_cmds.o: $(SRCROOT)/gap5/gap_range.h
newgap5_cmds.o: $(SRCROOT)/gap5/hache_table.h
newgap5_cmds.o: $(SRCROOT)/gap5/hash_lib.h
newgap5_cmds.o: $(SRCROOT)/gap5/import_gff.h
newgap5_cmds.o: $(SRCROOT)/gap5/io_handle.h
newgap5_cmds.o: $(SRCROOT)/gap5/io_utils.h
newgap5_cmds.o: $(SRCROOT)/gap5/list.h
newgap5_cmds.o: $(SRCROOT)/gap5/list_proc.h
newgap5_cmds.o: $(SRCROOT)/gap5/maq.h
newgap5_cmds.o: $(SRCROOT)/gap5/newgap_cmds.h
newgap5_cmds.o: $(SRCROOT)/gap5/newgap_structs.h
newgap5_cmds.o: $(SRCROOT)/gap5/qual.h
newgap5_cmds.o: $(SRCROOT)/gap5/qualIO.h
newgap5_cmds.o: $(SRCROOT)/gap5/quality_plot.h
newgap5_cmds.o: $(SRCROOT)/gap5/read_depth.h
newgap5_cmds.o: $(SRCROOT)/gap5/readpair.h
newgap5_cmds.o: $(SRCROOT)/gap5/restriction_enzymes.h
newgap5_cmds.o: $(SRCROOT)/gap5/sam_index.h
newgap5_cmds.o: $(SRCROOT)/gap5/shuffle_pads.h
newgap5_cmds.o: $(SRCROOT)/gap5/tag_plot.h
newgap5_cmds.o: $(SRCROOT)/gap5/tagdb.h
newgap5_cmds.o: $(SRCROOT)/gap5/template_display.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_anno.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_bin.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_cache_item.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_contig.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_gio.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_iface.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_index.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_index_common.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_library.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_register.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_scaffold.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_sequence.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_struct.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_tcl.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_track.h
newgap5_cmds.o: $(SRCROOT)/gap5/tg_utils.h
newgap5_cmds.o: $(SRCROOT)/gap5/tk-io-reg.h
newgap5_cmds.o: $(SRCROOT)/gap5/tkEdNames.h
newgap5_cmds.o: $(SRCROOT)/gap5/tkEditor.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/align.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/align_lib.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/align_lib_old.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/genetic_code.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/read_matrix.h
newgap5_cmds.o: $(SRCROOT)/seq_utils/renz_utils.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/canvas_box.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/intrinsic_type.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/sheet.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/tcl_utils.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/text_output.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/tkSheet.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/tkSheet_common.h
newgap5_cmds.o: $(SRCROOT)/tk_utils/tkSheet_struct.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)/gap5/notedb.h
notedb.o: $(SRCROOT)/tk_utils/intrinsic_type.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)/gap5/gap_globals.h
primlib.o: $(SRCROOT)/gap5/primlib.h
primlib.o: $(SRCROOT)/primer3/src/dpal.h
primlib.o: $(SRCROOT)/primer3/src/primer3.h
primlib.o: $(SRCROOT)/tk_utils/tcl_utils.h
primlib.o: $(SRCROOT)/tk_utils/text_output.h
qual.o: $(PWD)/staden_config.h
qual.o: $(SRCROOT)/Misc/array.h
qual.o: $(SRCROOT)/Misc/misc.h
qual.o: $(SRCROOT)/Misc/os.h
qual.o: $(SRCROOT)/Misc/tree.h
qual.o: $(SRCROOT)/Misc/xalloc.h
qual.o: $(SRCROOT)/Misc/xerror.h
qual.o: $(SRCROOT)/gap5/b+tree2.h
qual.o: $(SRCROOT)/gap5/consensus.h
qual.o: $(SRCROOT)/gap5/g-alloc.h
qual.o: $(SRCROOT)/gap5/g-connect.h
qual.o: $(SRCROOT)/gap5/g-db.h
qual.o: $(SRCROOT)/gap5/g-defs.h
qual.o: $(SRCROOT)/gap5/g-error.h
qual.o: $(SRCROOT)/gap5/g-filedefs.h
qual.o: $(SRCROOT)/gap5/g-io.h
qual.o: $(SRCROOT)/gap5/g-misc.h
qual.o: $(SRCROOT)/gap5/g-os.h
qual.o: $(SRCROOT)/gap5/g-request.h
qual.o: $(SRCROOT)/gap5/g-struct.h
qual.o: $(SRCROOT)/gap5/g.h
qual.o: $(SRCROOT)/gap5/gap_globals.h
qual.o: $(SRCROOT)/gap5/hache_table.h
qual.o: $(SRCROOT)/gap5/io_utils.h
qual.o: $(SRCROOT)/gap5/qual.h
qual.o: $(SRCROOT)/gap5/qualP.h
qual.o: $(SRCROOT)/gap5/tg_anno.h
qual.o: $(SRCROOT)/gap5/tg_bin.h
qual.o: $(SRCROOT)/gap5/tg_cache_item.h
qual.o: $(SRCROOT)/gap5/tg_contig.h
qual.o: $(SRCROOT)/gap5/tg_gio.h
qual.o: $(SRCROOT)/gap5/tg_iface.h
qual.o: $(SRCROOT)/gap5/tg_library.h
qual.o: $(SRCROOT)/gap5/tg_register.h
qual.o: $(SRCROOT)/gap5/tg_scaffold.h
qual.o: $(SRCROOT)/gap5/tg_sequence.h
qual.o: $(SRCROOT)/gap5/tg_struct.h
qual.o: $(SRCROOT)/gap5/tg_tcl.h
qual.o: $(SRCROOT)/gap5/tg_track.h
qual.o: $(SRCROOT)/gap5/tg_utils.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/misc.h
qualIO.o: $(SRCROOT)/Misc/os.h
qualIO.o: $(SRCROOT)/Misc/tree.h
qualIO.o: $(SRCROOT)/Misc/xalloc.h
qualIO.o: $(SRCROOT)/Misc/xerror.h
qualIO.o: $(SRCROOT)/gap5/b+tree2.h
qualIO.o: $(SRCROOT)/gap5/g-alloc.h
qualIO.o: $(SRCROOT)/gap5/g-connect.h
qualIO.o: $(SRCROOT)/gap5/g-db.h
qualIO.o: $(SRCROOT)/gap5/g-defs.h
qualIO.o: $(SRCROOT)/gap5/g-error.h
qualIO.o: $(SRCROOT)/gap5/g-filedefs.h
qualIO.o: $(SRCROOT)/gap5/g-io.h
qualIO.o: $(SRCROOT)/gap5/g-misc.h
qualIO.o: $(SRCROOT)/gap5/g-os.h
qualIO.o: $(SRCROOT)/gap5/g-request.h
qualIO.o: $(SRCROOT)/gap5/g-struct.h
qualIO.o: $(SRCROOT)/gap5/g.h
qualIO.o: $(SRCROOT)/gap5/gap4_compat.h
qualIO.o: $(SRCROOT)/gap5/gap_globals.h
qualIO.o: $(SRCROOT)/gap5/hache_table.h
qualIO.o: $(SRCROOT)/gap5/io_utils.h
qualIO.o: $(SRCROOT)/gap5/qual.h
qualIO.o: $(SRCROOT)/gap5/qualP.h
qualIO.o: $(SRCROOT)/gap5/tg_anno.h
qualIO.o: $(SRCROOT)/gap5/tg_bin.h
qualIO.o: $(SRCROOT)/gap5/tg_cache_item.h
qualIO.o: $(SRCROOT)/gap5/tg_contig.h
qualIO.o: $(SRCROOT)/gap5/tg_gio.h
qualIO.o: $(SRCROOT)/gap5/tg_iface.h
qualIO.o: $(SRCROOT)/gap5/tg_library.h
qualIO.o: $(SRCROOT)/gap5/tg_register.h
qualIO.o: $(SRCROOT)/gap5/tg_scaffold.h
qualIO.o: $(SRCROOT)/gap5/tg_sequence.h
qualIO.o: $(SRCROOT)/gap5/tg_struct.h
qualIO.o: $(SRCROOT)/gap5/tg_tcl.h
qualIO.o: $(SRCROOT)/gap5/tg_track.h
qualIO.o: $(SRCROOT)/gap5/tg_utils.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/misc.h
quality_plot.o: $(SRCROOT)/Misc/os.h
quality_plot.o: $(SRCROOT)/Misc/tree.h
quality_plot.o: $(SRCROOT)/Misc/xalloc.h
quality_plot.o: $(SRCROOT)/Misc/xerror.h
quality_plot.o: $(SRCROOT)/gap5/b+tree2.h
quality_plot.o: $(SRCROOT)/gap5/consensus.h
quality_plot.o: $(SRCROOT)/gap5/g-alloc.h
quality_plot.o: $(SRCROOT)/gap5/g-connect.h
quality_plot.o: $(SRCROOT)/gap5/g-db.h
quality_plot.o: $(SRCROOT)/gap5/g-defs.h
quality_plot.o: $(SRCROOT)/gap5/g-error.h
quality_plot.o: $(SRCROOT)/gap5/g-filedefs.h
quality_plot.o: $(SRCROOT)/gap5/g-io.h
quality_plot.o: $(SRCROOT)/gap5/g-misc.h
quality_plot.o: $(SRCROOT)/gap5/g-os.h
quality_plot.o: $(SRCROOT)/gap5/g-request.h
quality_plot.o: $(SRCROOT)/gap5/g-struct.h
quality_plot.o: $(SRCROOT)/gap5/g.h
quality_plot.o: $(SRCROOT)/gap5/gap_range.h
quality_plot.o: $(SRCROOT)/gap5/hache_table.h
quality_plot.o: $(SRCROOT)/gap5/io_utils.h
quality_plot.o: $(SRCROOT)/gap5/quality_plot.h
quality_plot.o: $(SRCROOT)/gap5/tg_anno.h
quality_plot.o: $(SRCROOT)/gap5/tg_bin.h
quality_plot.o: $(SRCROOT)/gap5/tg_cache_item.h
quality_plot.o: $(SRCROOT)/gap5/tg_contig.h
quality_plot.o: $(SRCROOT)/gap5/tg_gio.h
quality_plot.o: $(SRCROOT)/gap5/tg_iface.h
quality_plot.o: $(SRCROOT)/gap5/tg_library.h
quality_plot.o: $(SRCROOT)/gap5/tg_register.h
quality_plot.o: $(SRCROOT)/gap5/tg_scaffold.h
quality_plot.o: $(SRCROOT)/gap5/tg_sequence.h
quality_plot.o: $(SRCROOT)/gap5/tg_struct.h
quality_plot.o: $(SRCROOT)/gap5/tg_tcl.h
quality_plot.o: $(SRCROOT)/gap5/tg_track.h
quality_plot.o: $(SRCROOT)/gap5/tg_utils.h
read_depth.o: $(PWD)/staden_config.h
read_depth.o: $(SRCROOT)/Misc/array.h
read_depth.o: $(SRCROOT)/Misc/misc.h
read_depth.o: $(SRCROOT)/Misc/os.h
read_depth.o: $(SRCROOT)/Misc/tree.h
read_depth.o: $(SRCROOT)/Misc/xalloc.h
read_depth.o: $(SRCROOT)/Misc/xerror.h
read_depth.o: $(SRCROOT)/gap5/b+tree2.h
read_depth.o: $(SRCROOT)/gap5/g-alloc.h
read_depth.o: $(SRCROOT)/gap5/g-connect.h
read_depth.o: $(SRCROOT)/gap5/g-db.h
read_depth.o: $(SRCROOT)/gap5/g-defs.h
read_depth.o: $(SRCROOT)/gap5/g-error.h
read_depth.o: $(SRCROOT)/gap5/g-filedefs.h
read_depth.o: $(SRCROOT)/gap5/g-io.h
read_depth.o: $(SRCROOT)/gap5/g-misc.h
read_depth.o: $(SRCROOT)/gap5/g-os.h
read_depth.o: $(SRCROOT)/gap5/g-request.h
read_depth.o: $(SRCROOT)/gap5/g-struct.h
read_depth.o: $(SRCROOT)/gap5/g.h
read_depth.o: $(SRCROOT)/gap5/hache_table.h
read_depth.o: $(SRCROOT)/gap5/io_utils.h
read_depth.o: $(SRCROOT)/gap5/read_depth.h
read_depth.o: $(SRCROOT)/gap5/tg_anno.h
read_depth.o: $(SRCROOT)/gap5/tg_bin.h
read_depth.o: $(SRCROOT)/gap5/tg_cache_item.h
read_depth.o: $(SRCROOT)/gap5/tg_contig.h
read_depth.o: $(SRCROOT)/gap5/tg_gio.h
read_depth.o: $(SRCROOT)/gap5/tg_iface.h
read_depth.o: $(SRCROOT)/gap5/tg_library.h
read_depth.o: $(SRCROOT)/gap5/tg_register.h
read_depth.o: $(SRCROOT)/gap5/tg_scaffold.h
read_depth.o: $(SRCROOT)/gap5/tg_sequence.h
read_depth.o: $(SRCROOT)/gap5/tg_struct.h
read_depth.o: $(SRCROOT)/gap5/tg_tcl.h
read_depth.o: $(SRCROOT)/gap5/tg_track.h
read_depth.o: $(SRCROOT)/gap5/tg_utils.h
readpair.o: $(PWD)/staden_config.h
readpair.o: $(SRCROOT)/Misc/array.h
readpair.o: $(SRCROOT)/Misc/misc.h
readpair.o: $(SRCROOT)/Misc/os.h
readpair.o: $(SRCROOT)/Misc/tree.h
readpair.o: $(SRCROOT)/Misc/xalloc.h
readpair.o: $(SRCROOT)/Misc/xerror.h
readpair.o: $(SRCROOT)/gap5/b+tree2.h
readpair.o: $(SRCROOT)/gap5/consensus.h
readpair.o: $(SRCROOT)/gap5/contig_selector.h
readpair.o: $(SRCROOT)/gap5/cs-object.h
readpair.o: $(SRCROOT)/gap5/editor_view.h
readpair.o: $(SRCROOT)/gap5/g-alloc.h
readpair.o: $(SRCROOT)/gap5/g-connect.h
readpair.o: $(SRCROOT)/gap5/g-db.h
readpair.o: $(SRCROOT)/gap5/g-defs.h
readpair.o: $(SRCROOT)/gap5/g-error.h
readpair.o: $(SRCROOT)/gap5/g-filedefs.h
readpair.o: $(SRCROOT)/gap5/g-io.h
readpair.o: $(SRCROOT)/gap5/g-misc.h
readpair.o: $(SRCROOT)/gap5/g-os.h
readpair.o: $(SRCROOT)/gap5/g-request.h
readpair.o: $(SRCROOT)/gap5/g-struct.h
readpair.o: $(SRCROOT)/gap5/g.h
readpair.o: $(SRCROOT)/gap5/gap4_compat.h
readpair.o: $(SRCROOT)/gap5/gap_globals.h
readpair.o: $(SRCROOT)/gap5/hache_table.h
readpair.o: $(SRCROOT)/gap5/io_utils.h
readpair.o: $(SRCROOT)/gap5/list.h
readpair.o: $(SRCROOT)/gap5/newgap_cmds.h
readpair.o: $(SRCROOT)/gap5/readpair.h
readpair.o: $(SRCROOT)/gap5/tg_anno.h
readpair.o: $(SRCROOT)/gap5/tg_bin.h
readpair.o: $(SRCROOT)/gap5/tg_cache_item.h
readpair.o: $(SRCROOT)/gap5/tg_contig.h
readpair.o: $(SRCROOT)/gap5/tg_gio.h
readpair.o: $(SRCROOT)/gap5/tg_iface.h
readpair.o: $(SRCROOT)/gap5/tg_library.h
readpair.o: $(SRCROOT)/gap5/tg_register.h
readpair.o: $(SRCROOT)/gap5/tg_scaffold.h
readpair.o: $(SRCROOT)/gap5/tg_sequence.h
readpair.o: $(SRCROOT)/gap5/tg_struct.h
readpair.o: $(SRCROOT)/gap5/tg_tcl.h
readpair.o: $(SRCROOT)/gap5/tg_track.h
readpair.o: $(SRCROOT)/gap5/tg_utils.h
readpair.o: $(SRCROOT)/gap5/tk-io-reg.h
readpair.o: $(SRCROOT)/gap5/tkEdNames.h
readpair.o: $(SRCROOT)/gap5/tkEditor.h
readpair.o: $(SRCROOT)/tk_utils/canvas_box.h
readpair.o: $(SRCROOT)/tk_utils/intrinsic_type.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
restriction_enzymes.o: $(PWD)/staden_config.h
restriction_enzymes.o: $(SRCROOT)/Misc/array.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/tree.h
restriction_enzymes.o: $(SRCROOT)/Misc/xalloc.h
restriction_enzymes.o: $(SRCROOT)/Misc/xerror.h
restriction_enzymes.o: $(SRCROOT)/gap5/b+tree2.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-alloc.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-connect.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-db.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-defs.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-error.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-filedefs.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-io.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-misc.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-os.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-request.h
restriction_enzymes.o: $(SRCROOT)/gap5/g-struct.h
restriction_enzymes.o: $(SRCROOT)/gap5/g.h
restriction_enzymes.o: $(SRCROOT)/gap5/gap4_compat.h
restriction_enzymes.o: $(SRCROOT)/gap5/gap_canvas_box.h
restriction_enzymes.o: $(SRCROOT)/gap5/gap_cli_arg.h
restriction_enzymes.o: $(SRCROOT)/gap5/gap_globals.h
restriction_enzymes.o: $(SRCROOT)/gap5/hache_table.h
restriction_enzymes.o: $(SRCROOT)/gap5/io_utils.h
restriction_enzymes.o: $(SRCROOT)/gap5/list.h
restriction_enzymes.o: $(SRCROOT)/gap5/list_proc.h
restriction_enzymes.o: $(SRCROOT)/gap5/newgap_cmds.h
restriction_enzymes.o: $(SRCROOT)/gap5/qual.h
restriction_enzymes.o: $(SRCROOT)/gap5/restriction_enzymes.h
restriction_enzymes.o: $(SRCROOT)/gap5/template_display.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_anno.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_bin.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_cache_item.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_contig.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_gio.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_iface.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_library.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_register.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_scaffold.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_sequence.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_struct.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_tcl.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_track.h
restriction_enzymes.o: $(SRCROOT)/gap5/tg_utils.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/restriction_enzyme_map.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
sam_index.o: $(PWD)/staden_config.h
sam_index.o: $(SRCROOT)/Misc/array.h
sam_index.o: $(SRCROOT)/Misc/misc.h
sam_index.o: $(SRCROOT)/Misc/os.h
sam_index.o: $(SRCROOT)/Misc/string_alloc.h
sam_index.o: $(SRCROOT)/Misc/tree.h
sam_index.o: $(SRCROOT)/Misc/xalloc.h
sam_index.o: $(SRCROOT)/Misc/xerror.h
sam_index.o: $(SRCROOT)/gap5/b+tree2.h
sam_index.o: $(SRCROOT)/gap5/break_contig.h
sam_index.o: $(SRCROOT)/gap5/consensus.h
sam_index.o: $(SRCROOT)/gap5/depad_seq_tree.h
sam_index.o: $(SRCROOT)/gap5/g-alloc.h
sam_index.o: $(SRCROOT)/gap5/g-connect.h
sam_index.o: $(SRCROOT)/gap5/g-db.h
sam_index.o: $(SRCROOT)/gap5/g-defs.h
sam_index.o: $(SRCROOT)/gap5/g-error.h
sam_index.o: $(SRCROOT)/gap5/g-filedefs.h
sam_index.o: $(SRCROOT)/gap5/g-io.h
sam_index.o: $(SRCROOT)/gap5/g-misc.h
sam_index.o: $(SRCROOT)/gap5/g-os.h
sam_index.o: $(SRCROOT)/gap5/g-request.h
sam_index.o: $(SRCROOT)/gap5/g-struct.h
sam_index.o: $(SRCROOT)/gap5/g.h
sam_index.o: $(SRCROOT)/gap5/hache_table.h
sam_index.o: $(SRCROOT)/gap5/io_utils.h
sam_index.o: $(SRCROOT)/gap5/sam_index.h
sam_index.o: $(SRCROOT)/gap5/sam_pileup.h
sam_index.o: $(SRCROOT)/gap5/tg_anno.h
sam_index.o: $(SRCROOT)/gap5/tg_bin.h
sam_index.o: $(SRCROOT)/gap5/tg_cache_item.h
sam_index.o: $(SRCROOT)/gap5/tg_contig.h
sam_index.o: $(SRCROOT)/gap5/tg_gio.h
sam_index.o: $(SRCROOT)/gap5/tg_iface.h
sam_index.o: $(SRCROOT)/gap5/tg_index.h
sam_index.o: $(SRCROOT)/gap5/tg_index_common.h
sam_index.o: $(SRCROOT)/gap5/tg_library.h
sam_index.o: $(SRCROOT)/gap5/tg_register.h
sam_index.o: $(SRCROOT)/gap5/tg_scaffold.h
sam_index.o: $(SRCROOT)/gap5/tg_sequence.h
sam_index.o: $(SRCROOT)/gap5/tg_struct.h
sam_index.o: $(SRCROOT)/gap5/tg_tcl.h
sam_index.o: $(SRCROOT)/gap5/tg_track.h
sam_index.o: $(SRCROOT)/gap5/tg_utils.h
sam_pileup.o: $(PWD)/staden_config.h
sam_pileup.o: $(SRCROOT)/gap5/sam_pileup.h
shuffle_pads.o: $(PWD)/staden_config.h
shuffle_pads.o: $(SRCROOT)/Misc/array.h
shuffle_pads.o: $(SRCROOT)/Misc/misc.h
shuffle_pads.o: $(SRCROOT)/Misc/os.h
shuffle_pads.o: $(SRCROOT)/Misc/tree.h
shuffle_pads.o: $(SRCROOT)/Misc/xalloc.h
shuffle_pads.o: $(SRCROOT)/Misc/xerror.h
shuffle_pads.o: $(SRCROOT)/gap5/b+tree2.h
shuffle_pads.o: $(SRCROOT)/gap5/break_contig.h
shuffle_pads.o: $(SRCROOT)/gap5/consensus.h
shuffle_pads.o: $(SRCROOT)/gap5/g-alloc.h
shuffle_pads.o: $(SRCROOT)/gap5/g-connect.h
shuffle_pads.o: $(SRCROOT)/gap5/g-db.h
shuffle_pads.o: $(SRCROOT)/gap5/g-defs.h
shuffle_pads.o: $(SRCROOT)/gap5/g-error.h
shuffle_pads.o: $(SRCROOT)/gap5/g-filedefs.h
shuffle_pads.o: $(SRCROOT)/gap5/g-io.h
shuffle_pads.o: $(SRCROOT)/gap5/g-misc.h
shuffle_pads.o: $(SRCROOT)/gap5/g-os.h
shuffle_pads.o: $(SRCROOT)/gap5/g-request.h
shuffle_pads.o: $(SRCROOT)/gap5/g-struct.h
shuffle_pads.o: $(SRCROOT)/gap5/g.h
shuffle_pads.o: $(SRCROOT)/gap5/hache_table.h
shuffle_pads.o: $(SRCROOT)/gap5/io_utils.h
shuffle_pads.o: $(SRCROOT)/gap5/shuffle_pads.h
shuffle_pads.o: $(SRCROOT)/gap5/str_finder.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_anno.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_bin.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_cache_item.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_contig.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_gio.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_iface.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_library.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_register.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_scaffold.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_sequence.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_struct.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_tcl.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_track.h
shuffle_pads.o: $(SRCROOT)/gap5/tg_utils.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/text_output.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)/gap5/g-error.h
stack_dump.o: $(SRCROOT)/gap5/gap-error.h
stack_dump.o: $(SRCROOT)/gap5/stack_dump.h
str_finder.o: $(SRCROOT)/gap5/str_finder.h
str_finder.o: $(SRCROOT)/gap5/utlist.h
tag_plot.o: $(PWD)/staden_config.h
tag_plot.o: $(SRCROOT)/Misc/array.h
tag_plot.o: $(SRCROOT)/Misc/misc.h
tag_plot.o: $(SRCROOT)/Misc/os.h
tag_plot.o: $(SRCROOT)/Misc/tree.h
tag_plot.o: $(SRCROOT)/Misc/xalloc.h
tag_plot.o: $(SRCROOT)/Misc/xerror.h
tag_plot.o: $(SRCROOT)/gap5/active_tags.h
tag_plot.o: $(SRCROOT)/gap5/b+tree2.h
tag_plot.o: $(SRCROOT)/gap5/g-alloc.h
tag_plot.o: $(SRCROOT)/gap5/g-connect.h
tag_plot.o: $(SRCROOT)/gap5/g-db.h
tag_plot.o: $(SRCROOT)/gap5/g-defs.h
tag_plot.o: $(SRCROOT)/gap5/g-error.h
tag_plot.o: $(SRCROOT)/gap5/g-filedefs.h
tag_plot.o: $(SRCROOT)/gap5/g-io.h
tag_plot.o: $(SRCROOT)/gap5/g-misc.h
tag_plot.o: $(SRCROOT)/gap5/g-os.h
tag_plot.o: $(SRCROOT)/gap5/g-request.h
tag_plot.o: $(SRCROOT)/gap5/g-struct.h
tag_plot.o: $(SRCROOT)/gap5/g.h
tag_plot.o: $(SRCROOT)/gap5/gap_range.h
tag_plot.o: $(SRCROOT)/gap5/hache_table.h
tag_plot.o: $(SRCROOT)/gap5/io_utils.h
tag_plot.o: $(SRCROOT)/gap5/tag_plot.h
tag_plot.o: $(SRCROOT)/gap5/tagdb.h
tag_plot.o: $(SRCROOT)/gap5/template_draw.h
tag_plot.o: $(SRCROOT)/gap5/tg_anno.h
tag_plot.o: $(SRCROOT)/gap5/tg_bin.h
tag_plot.o: $(SRCROOT)/gap5/tg_cache_item.h
tag_plot.o: $(SRCROOT)/gap5/tg_contig.h
tag_plot.o: $(SRCROOT)/gap5/tg_gio.h
tag_plot.o: $(SRCROOT)/gap5/tg_iface.h
tag_plot.o: $(SRCROOT)/gap5/tg_library.h
tag_plot.o: $(SRCROOT)/gap5/tg_register.h
tag_plot.o: $(SRCROOT)/gap5/tg_scaffold.h
tag_plot.o: $(SRCROOT)/gap5/tg_sequence.h
tag_plot.o: $(SRCROOT)/gap5/tg_struct.h
tag_plot.o: $(SRCROOT)/gap5/tg_tcl.h
tag_plot.o: $(SRCROOT)/gap5/tg_track.h
tag_plot.o: $(SRCROOT)/gap5/tg_utils.h
tag_plot.o: $(SRCROOT)/tk_utils/intrinsic_type.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)/gap5/tagdb.h
tagdb.o: $(SRCROOT)/tk_utils/intrinsic_type.h
template_display.o: $(PWD)/staden_config.h
template_display.o: $(SRCROOT)/Misc/array.h
template_display.o: $(SRCROOT)/Misc/misc.h
template_display.o: $(SRCROOT)/Misc/os.h
template_display.o: $(SRCROOT)/Misc/tree.h
template_display.o: $(SRCROOT)/Misc/xalloc.h
template_display.o: $(SRCROOT)/Misc/xerror.h
template_display.o: $(SRCROOT)/gap5/b+tree2.h
template_display.o: $(SRCROOT)/gap5/g-alloc.h
template_display.o: $(SRCROOT)/gap5/g-connect.h
template_display.o: $(SRCROOT)/gap5/g-db.h
template_display.o: $(SRCROOT)/gap5/g-defs.h
template_display.o: $(SRCROOT)/gap5/g-error.h
template_display.o: $(SRCROOT)/gap5/g-filedefs.h
template_display.o: $(SRCROOT)/gap5/g-io.h
template_display.o: $(SRCROOT)/gap5/g-misc.h
template_display.o: $(SRCROOT)/gap5/g-os.h
template_display.o: $(SRCROOT)/gap5/g-request.h
template_display.o: $(SRCROOT)/gap5/g-struct.h
template_display.o: $(SRCROOT)/gap5/g.h
template_display.o: $(SRCROOT)/gap5/gap_globals.h
template_display.o: $(SRCROOT)/gap5/gap_range.h
template_display.o: $(SRCROOT)/gap5/hache_table.h
template_display.o: $(SRCROOT)/gap5/io_utils.h
template_display.o: $(SRCROOT)/gap5/template_display.h
template_display.o: $(SRCROOT)/gap5/template_draw.h
template_display.o: $(SRCROOT)/gap5/tg_anno.h
template_display.o: $(SRCROOT)/gap5/tg_bin.h
template_display.o: $(SRCROOT)/gap5/tg_cache_item.h
template_display.o: $(SRCROOT)/gap5/tg_contig.h
template_display.o: $(SRCROOT)/gap5/tg_gio.h
template_display.o: $(SRCROOT)/gap5/tg_iface.h
template_display.o: $(SRCROOT)/gap5/tg_library.h
template_display.o: $(SRCROOT)/gap5/tg_register.h
template_display.o: $(SRCROOT)/gap5/tg_scaffold.h
template_display.o: $(SRCROOT)/gap5/tg_sequence.h
template_display.o: $(SRCROOT)/gap5/tg_struct.h
template_display.o: $(SRCROOT)/gap5/tg_tcl.h
template_display.o: $(SRCROOT)/gap5/tg_track.h
template_display.o: $(SRCROOT)/gap5/tg_utils.h
template_display.o: $(SRCROOT)/tk_utils/tcl_utils.h
template_draw.o: $(SRCROOT)/gap5/template_draw.h
tg_anno.o: $(PWD)/staden_config.h
tg_anno.o: $(SRCROOT)/Misc/array.h
tg_anno.o: $(SRCROOT)/Misc/misc.h
tg_anno.o: $(SRCROOT)/Misc/os.h
tg_anno.o: $(SRCROOT)/Misc/tree.h
tg_anno.o: $(SRCROOT)/Misc/xalloc.h
tg_anno.o: $(SRCROOT)/Misc/xerror.h
tg_anno.o: $(SRCROOT)/gap5/active_tags.h
tg_anno.o: $(SRCROOT)/gap5/b+tree2.h
tg_anno.o: $(SRCROOT)/gap5/g-alloc.h
tg_anno.o: $(SRCROOT)/gap5/g-connect.h
tg_anno.o: $(SRCROOT)/gap5/g-db.h
tg_anno.o: $(SRCROOT)/gap5/g-defs.h
tg_anno.o: $(SRCROOT)/gap5/g-error.h
tg_anno.o: $(SRCROOT)/gap5/g-filedefs.h
tg_anno.o: $(SRCROOT)/gap5/g-io.h
tg_anno.o: $(SRCROOT)/gap5/g-misc.h
tg_anno.o: $(SRCROOT)/gap5/g-os.h
tg_anno.o: $(SRCROOT)/gap5/g-request.h
tg_anno.o: $(SRCROOT)/gap5/g-struct.h
tg_anno.o: $(SRCROOT)/gap5/g.h
tg_anno.o: $(SRCROOT)/gap5/gap4_compat.h
tg_anno.o: $(SRCROOT)/gap5/hache_table.h
tg_anno.o: $(SRCROOT)/gap5/io_utils.h
tg_anno.o: $(SRCROOT)/gap5/tagdb.h
tg_anno.o: $(SRCROOT)/gap5/tg_anno.h
tg_anno.o: $(SRCROOT)/gap5/tg_bin.h
tg_anno.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_anno.o: $(SRCROOT)/gap5/tg_contig.h
tg_anno.o: $(SRCROOT)/gap5/tg_gio.h
tg_anno.o: $(SRCROOT)/gap5/tg_iface.h
tg_anno.o: $(SRCROOT)/gap5/tg_library.h
tg_anno.o: $(SRCROOT)/gap5/tg_register.h
tg_anno.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_anno.o: $(SRCROOT)/gap5/tg_sequence.h
tg_anno.o: $(SRCROOT)/gap5/tg_struct.h
tg_anno.o: $(SRCROOT)/gap5/tg_tcl.h
tg_anno.o: $(SRCROOT)/gap5/tg_track.h
tg_anno.o: $(SRCROOT)/gap5/tg_utils.h
tg_anno.o: $(SRCROOT)/tk_utils/intrinsic_type.h
tg_anno.o: $(SRCROOT)/tk_utils/text_output.h
tg_bin.o: $(PWD)/staden_config.h
tg_bin.o: $(SRCROOT)/Misc/array.h
tg_bin.o: $(SRCROOT)/Misc/misc.h
tg_bin.o: $(SRCROOT)/Misc/os.h
tg_bin.o: $(SRCROOT)/Misc/tree.h
tg_bin.o: $(SRCROOT)/Misc/xalloc.h
tg_bin.o: $(SRCROOT)/Misc/xerror.h
tg_bin.o: $(SRCROOT)/gap5/b+tree2.h
tg_bin.o: $(SRCROOT)/gap5/consensus.h
tg_bin.o: $(SRCROOT)/gap5/g-alloc.h
tg_bin.o: $(SRCROOT)/gap5/g-connect.h
tg_bin.o: $(SRCROOT)/gap5/g-db.h
tg_bin.o: $(SRCROOT)/gap5/g-defs.h
tg_bin.o: $(SRCROOT)/gap5/g-error.h
tg_bin.o: $(SRCROOT)/gap5/g-filedefs.h
tg_bin.o: $(SRCROOT)/gap5/g-io.h
tg_bin.o: $(SRCROOT)/gap5/g-misc.h
tg_bin.o: $(SRCROOT)/gap5/g-os.h
tg_bin.o: $(SRCROOT)/gap5/g-request.h
tg_bin.o: $(SRCROOT)/gap5/g-struct.h
tg_bin.o: $(SRCROOT)/gap5/g.h
tg_bin.o: $(SRCROOT)/gap5/hache_table.h
tg_bin.o: $(SRCROOT)/gap5/io_utils.h
tg_bin.o: $(SRCROOT)/gap5/tg_anno.h
tg_bin.o: $(SRCROOT)/gap5/tg_bin.h
tg_bin.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_bin.o: $(SRCROOT)/gap5/tg_contig.h
tg_bin.o: $(SRCROOT)/gap5/tg_gio.h
tg_bin.o: $(SRCROOT)/gap5/tg_iface.h
tg_bin.o: $(SRCROOT)/gap5/tg_library.h
tg_bin.o: $(SRCROOT)/gap5/tg_register.h
tg_bin.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_bin.o: $(SRCROOT)/gap5/tg_sequence.h
tg_bin.o: $(SRCROOT)/gap5/tg_struct.h
tg_bin.o: $(SRCROOT)/gap5/tg_tcl.h
tg_bin.o: $(SRCROOT)/gap5/tg_track.h
tg_bin.o: $(SRCROOT)/gap5/tg_tracks.h
tg_bin.o: $(SRCROOT)/gap5/tg_utils.h
tg_cache.o: $(PWD)/staden_config.h
tg_cache.o: $(SRCROOT)/Misc/array.h
tg_cache.o: $(SRCROOT)/Misc/misc.h
tg_cache.o: $(SRCROOT)/Misc/os.h
tg_cache.o: $(SRCROOT)/Misc/tree.h
tg_cache.o: $(SRCROOT)/Misc/xalloc.h
tg_cache.o: $(SRCROOT)/Misc/xerror.h
tg_cache.o: $(SRCROOT)/gap5/b+tree2.h
tg_cache.o: $(SRCROOT)/gap5/g-alloc.h
tg_cache.o: $(SRCROOT)/gap5/g-connect.h
tg_cache.o: $(SRCROOT)/gap5/g-db.h
tg_cache.o: $(SRCROOT)/gap5/g-defs.h
tg_cache.o: $(SRCROOT)/gap5/g-error.h
tg_cache.o: $(SRCROOT)/gap5/g-filedefs.h
tg_cache.o: $(SRCROOT)/gap5/g-io.h
tg_cache.o: $(SRCROOT)/gap5/g-misc.h
tg_cache.o: $(SRCROOT)/gap5/g-os.h
tg_cache.o: $(SRCROOT)/gap5/g-request.h
tg_cache.o: $(SRCROOT)/gap5/g-struct.h
tg_cache.o: $(SRCROOT)/gap5/g.h
tg_cache.o: $(SRCROOT)/gap5/hache_table.h
tg_cache.o: $(SRCROOT)/gap5/io_utils.h
tg_cache.o: $(SRCROOT)/gap5/tg_anno.h
tg_cache.o: $(SRCROOT)/gap5/tg_bin.h
tg_cache.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_cache.o: $(SRCROOT)/gap5/tg_contig.h
tg_cache.o: $(SRCROOT)/gap5/tg_gio.h
tg_cache.o: $(SRCROOT)/gap5/tg_iface.h
tg_cache.o: $(SRCROOT)/gap5/tg_library.h
tg_cache.o: $(SRCROOT)/gap5/tg_register.h
tg_cache.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_cache.o: $(SRCROOT)/gap5/tg_sequence.h
tg_cache.o: $(SRCROOT)/gap5/tg_struct.h
tg_cache.o: $(SRCROOT)/gap5/tg_tcl.h
tg_cache.o: $(SRCROOT)/gap5/tg_track.h
tg_cache.o: $(SRCROOT)/gap5/tg_utils.h
tg_check.o: $(PWD)/staden_config.h
tg_check.o: $(SRCROOT)/Misc/array.h
tg_check.o: $(SRCROOT)/Misc/misc.h
tg_check.o: $(SRCROOT)/Misc/os.h
tg_check.o: $(SRCROOT)/Misc/tree.h
tg_check.o: $(SRCROOT)/Misc/xalloc.h
tg_check.o: $(SRCROOT)/Misc/xerror.h
tg_check.o: $(SRCROOT)/gap5/b+tree2.h
tg_check.o: $(SRCROOT)/gap5/consensus.h
tg_check.o: $(SRCROOT)/gap5/g-alloc.h
tg_check.o: $(SRCROOT)/gap5/g-connect.h
tg_check.o: $(SRCROOT)/gap5/g-db.h
tg_check.o: $(SRCROOT)/gap5/g-defs.h
tg_check.o: $(SRCROOT)/gap5/g-error.h
tg_check.o: $(SRCROOT)/gap5/g-filedefs.h
tg_check.o: $(SRCROOT)/gap5/g-io.h
tg_check.o: $(SRCROOT)/gap5/g-misc.h
tg_check.o: $(SRCROOT)/gap5/g-os.h
tg_check.o: $(SRCROOT)/gap5/g-request.h
tg_check.o: $(SRCROOT)/gap5/g-struct.h
tg_check.o: $(SRCROOT)/gap5/g.h
tg_check.o: $(SRCROOT)/gap5/hache_table.h
tg_check.o: $(SRCROOT)/gap5/io_utils.h
tg_check.o: $(SRCROOT)/gap5/tg_anno.h
tg_check.o: $(SRCROOT)/gap5/tg_bin.h
tg_check.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_check.o: $(SRCROOT)/gap5/tg_check.h
tg_check.o: $(SRCROOT)/gap5/tg_contig.h
tg_check.o: $(SRCROOT)/gap5/tg_gio.h
tg_check.o: $(SRCROOT)/gap5/tg_iface.h
tg_check.o: $(SRCROOT)/gap5/tg_library.h
tg_check.o: $(SRCROOT)/gap5/tg_register.h
tg_check.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_check.o: $(SRCROOT)/gap5/tg_sequence.h
tg_check.o: $(SRCROOT)/gap5/tg_struct.h
tg_check.o: $(SRCROOT)/gap5/tg_tcl.h
tg_check.o: $(SRCROOT)/gap5/tg_track.h
tg_check.o: $(SRCROOT)/gap5/tg_utils.h
tg_check.o: $(SRCROOT)/tk_utils/text_output.h
tg_contig.o: $(PWD)/staden_config.h
tg_contig.o: $(SRCROOT)/Misc/array.h
tg_contig.o: $(SRCROOT)/Misc/misc.h
tg_contig.o: $(SRCROOT)/Misc/os.h
tg_contig.o: $(SRCROOT)/Misc/tree.h
tg_contig.o: $(SRCROOT)/Misc/xalloc.h
tg_contig.o: $(SRCROOT)/Misc/xerror.h
tg_contig.o: $(SRCROOT)/gap5/b+tree2.h
tg_contig.o: $(SRCROOT)/gap5/break_contig.h
tg_contig.o: $(SRCROOT)/gap5/consensus.h
tg_contig.o: $(SRCROOT)/gap5/find_haplotypes.h
tg_contig.o: $(SRCROOT)/gap5/g-alloc.h
tg_contig.o: $(SRCROOT)/gap5/g-connect.h
tg_contig.o: $(SRCROOT)/gap5/g-db.h
tg_contig.o: $(SRCROOT)/gap5/g-defs.h
tg_contig.o: $(SRCROOT)/gap5/g-error.h
tg_contig.o: $(SRCROOT)/gap5/g-filedefs.h
tg_contig.o: $(SRCROOT)/gap5/g-io.h
tg_contig.o: $(SRCROOT)/gap5/g-misc.h
tg_contig.o: $(SRCROOT)/gap5/g-os.h
tg_contig.o: $(SRCROOT)/gap5/g-request.h
tg_contig.o: $(SRCROOT)/gap5/g-struct.h
tg_contig.o: $(SRCROOT)/gap5/g.h
tg_contig.o: $(SRCROOT)/gap5/hache_table.h
tg_contig.o: $(SRCROOT)/gap5/io_utils.h
tg_contig.o: $(SRCROOT)/gap5/list_proc.h
tg_contig.o: $(SRCROOT)/gap5/tg_anno.h
tg_contig.o: $(SRCROOT)/gap5/tg_bin.h
tg_contig.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_contig.o: $(SRCROOT)/gap5/tg_check.h
tg_contig.o: $(SRCROOT)/gap5/tg_contig.h
tg_contig.o: $(SRCROOT)/gap5/tg_gio.h
tg_contig.o: $(SRCROOT)/gap5/tg_iface.h
tg_contig.o: $(SRCROOT)/gap5/tg_library.h
tg_contig.o: $(SRCROOT)/gap5/tg_register.h
tg_contig.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_contig.o: $(SRCROOT)/gap5/tg_sequence.h
tg_contig.o: $(SRCROOT)/gap5/tg_struct.h
tg_contig.o: $(SRCROOT)/gap5/tg_tcl.h
tg_contig.o: $(SRCROOT)/gap5/tg_track.h
tg_contig.o: $(SRCROOT)/gap5/tg_utils.h
tg_contig.o: $(SRCROOT)/seq_utils/dna_utils.h
tg_gio.o: $(PWD)/staden_config.h
tg_gio.o: $(SRCROOT)/Misc/array.h
tg_gio.o: $(SRCROOT)/Misc/misc.h
tg_gio.o: $(SRCROOT)/Misc/os.h
tg_gio.o: $(SRCROOT)/Misc/tree.h
tg_gio.o: $(SRCROOT)/Misc/xalloc.h
tg_gio.o: $(SRCROOT)/Misc/xerror.h
tg_gio.o: $(SRCROOT)/gap5/actf.h
tg_gio.o: $(SRCROOT)/gap5/b+tree2.h
tg_gio.o: $(SRCROOT)/gap5/g-alloc.h
tg_gio.o: $(SRCROOT)/gap5/g-connect.h
tg_gio.o: $(SRCROOT)/gap5/g-db.h
tg_gio.o: $(SRCROOT)/gap5/g-defs.h
tg_gio.o: $(SRCROOT)/gap5/g-error.h
tg_gio.o: $(SRCROOT)/gap5/g-filedefs.h
tg_gio.o: $(SRCROOT)/gap5/g-io.h
tg_gio.o: $(SRCROOT)/gap5/g-misc.h
tg_gio.o: $(SRCROOT)/gap5/g-os.h
tg_gio.o: $(SRCROOT)/gap5/g-request.h
tg_gio.o: $(SRCROOT)/gap5/g-struct.h
tg_gio.o: $(SRCROOT)/gap5/g.h
tg_gio.o: $(SRCROOT)/gap5/hache_table.h
tg_gio.o: $(SRCROOT)/gap5/io_utils.h
tg_gio.o: $(SRCROOT)/gap5/tg_anno.h
tg_gio.o: $(SRCROOT)/gap5/tg_bin.h
tg_gio.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_gio.o: $(SRCROOT)/gap5/tg_contig.h
tg_gio.o: $(SRCROOT)/gap5/tg_gio.h
tg_gio.o: $(SRCROOT)/gap5/tg_iface.h
tg_gio.o: $(SRCROOT)/gap5/tg_iface_g.h
tg_gio.o: $(SRCROOT)/gap5/tg_library.h
tg_gio.o: $(SRCROOT)/gap5/tg_register.h
tg_gio.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_gio.o: $(SRCROOT)/gap5/tg_sequence.h
tg_gio.o: $(SRCROOT)/gap5/tg_struct.h
tg_gio.o: $(SRCROOT)/gap5/tg_tcl.h
tg_gio.o: $(SRCROOT)/gap5/tg_track.h
tg_gio.o: $(SRCROOT)/gap5/tg_utils.h
tg_iface_g.o: $(PWD)/staden_config.h
tg_iface_g.o: $(SRCROOT)/Misc/array.h
tg_iface_g.o: $(SRCROOT)/Misc/misc.h
tg_iface_g.o: $(SRCROOT)/Misc/os.h
tg_iface_g.o: $(SRCROOT)/Misc/tree.h
tg_iface_g.o: $(SRCROOT)/Misc/xalloc.h
tg_iface_g.o: $(SRCROOT)/Misc/xerror.h
tg_iface_g.o: $(SRCROOT)/gap5/b+tree2.h
tg_iface_g.o: $(SRCROOT)/gap5/g-alloc.h
tg_iface_g.o: $(SRCROOT)/gap5/g-connect.h
tg_iface_g.o: $(SRCROOT)/gap5/g-db.h
tg_iface_g.o: $(SRCROOT)/gap5/g-defs.h
tg_iface_g.o: $(SRCROOT)/gap5/g-error.h
tg_iface_g.o: $(SRCROOT)/gap5/g-filedefs.h
tg_iface_g.o: $(SRCROOT)/gap5/g-io.h
tg_iface_g.o: $(SRCROOT)/gap5/g-misc.h
tg_iface_g.o: $(SRCROOT)/gap5/g-os.h
tg_iface_g.o: $(SRCROOT)/gap5/g-request.h
tg_iface_g.o: $(SRCROOT)/gap5/g-struct.h
tg_iface_g.o: $(SRCROOT)/gap5/g.h
tg_iface_g.o: $(SRCROOT)/gap5/hache_table.h
tg_iface_g.o: $(SRCROOT)/gap5/io_utils.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_anno.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_bin.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_contig.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_gio.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_iface.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_iface_g.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_library.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_register.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_sequence.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_struct.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_tcl.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_track.h
tg_iface_g.o: $(SRCROOT)/gap5/tg_utils.h
tg_iface_g.o: $(SRCROOT)/seq_utils/dna_utils.h
tg_index.o: $(PWD)/staden_config.h
tg_index.o: $(SRCROOT)/Misc/array.h
tg_index.o: $(SRCROOT)/Misc/misc.h
tg_index.o: $(SRCROOT)/Misc/os.h
tg_index.o: $(SRCROOT)/Misc/string_alloc.h
tg_index.o: $(SRCROOT)/Misc/tree.h
tg_index.o: $(SRCROOT)/Misc/xalloc.h
tg_index.o: $(SRCROOT)/Misc/xerror.h
tg_index.o: $(SRCROOT)/gap5/ace.h
tg_index.o: $(SRCROOT)/gap5/afg.h
tg_index.o: $(SRCROOT)/gap5/b+tree2.h
tg_index.o: $(SRCROOT)/gap5/baf.h
tg_index.o: $(SRCROOT)/gap5/caf.h
tg_index.o: $(SRCROOT)/gap5/fasta.h
tg_index.o: $(SRCROOT)/gap5/g-alloc.h
tg_index.o: $(SRCROOT)/gap5/g-connect.h
tg_index.o: $(SRCROOT)/gap5/g-db.h
tg_index.o: $(SRCROOT)/gap5/g-defs.h
tg_index.o: $(SRCROOT)/gap5/g-error.h
tg_index.o: $(SRCROOT)/gap5/g-filedefs.h
tg_index.o: $(SRCROOT)/gap5/g-io.h
tg_index.o: $(SRCROOT)/gap5/g-misc.h
tg_index.o: $(SRCROOT)/gap5/g-os.h
tg_index.o: $(SRCROOT)/gap5/g-request.h
tg_index.o: $(SRCROOT)/gap5/g-struct.h
tg_index.o: $(SRCROOT)/gap5/g.h
tg_index.o: $(SRCROOT)/gap5/hache_table.h
tg_index.o: $(SRCROOT)/gap5/io_utils.h
tg_index.o: $(SRCROOT)/gap5/maq.h
tg_index.o: $(SRCROOT)/gap5/maqmap.h
tg_index.o: $(SRCROOT)/gap5/sam_index.h
tg_index.o: $(SRCROOT)/gap5/tg_anno.h
tg_index.o: $(SRCROOT)/gap5/tg_bin.h
tg_index.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_index.o: $(SRCROOT)/gap5/tg_contig.h
tg_index.o: $(SRCROOT)/gap5/tg_gio.h
tg_index.o: $(SRCROOT)/gap5/tg_iface.h
tg_index.o: $(SRCROOT)/gap5/tg_index.h
tg_index.o: $(SRCROOT)/gap5/tg_index_common.h
tg_index.o: $(SRCROOT)/gap5/tg_library.h
tg_index.o: $(SRCROOT)/gap5/tg_register.h
tg_index.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_index.o: $(SRCROOT)/gap5/tg_sequence.h
tg_index.o: $(SRCROOT)/gap5/tg_struct.h
tg_index.o: $(SRCROOT)/gap5/tg_tcl.h
tg_index.o: $(SRCROOT)/gap5/tg_track.h
tg_index.o: $(SRCROOT)/gap5/tg_utils.h
tg_index_common.o: $(PWD)/staden_config.h
tg_index_common.o: $(SRCROOT)/Misc/array.h
tg_index_common.o: $(SRCROOT)/Misc/misc.h
tg_index_common.o: $(SRCROOT)/Misc/os.h
tg_index_common.o: $(SRCROOT)/Misc/string_alloc.h
tg_index_common.o: $(SRCROOT)/Misc/tree.h
tg_index_common.o: $(SRCROOT)/Misc/xalloc.h
tg_index_common.o: $(SRCROOT)/Misc/xerror.h
tg_index_common.o: $(SRCROOT)/gap5/b+tree2.h
tg_index_common.o: $(SRCROOT)/gap5/break_contig.h
tg_index_common.o: $(SRCROOT)/gap5/g-alloc.h
tg_index_common.o: $(SRCROOT)/gap5/g-connect.h
tg_index_common.o: $(SRCROOT)/gap5/g-db.h
tg_index_common.o: $(SRCROOT)/gap5/g-defs.h
tg_index_common.o: $(SRCROOT)/gap5/g-error.h
tg_index_common.o: $(SRCROOT)/gap5/g-filedefs.h
tg_index_common.o: $(SRCROOT)/gap5/g-io.h
tg_index_common.o: $(SRCROOT)/gap5/g-misc.h
tg_index_common.o: $(SRCROOT)/gap5/g-os.h
tg_index_common.o: $(SRCROOT)/gap5/g-request.h
tg_index_common.o: $(SRCROOT)/gap5/g-struct.h
tg_index_common.o: $(SRCROOT)/gap5/g.h
tg_index_common.o: $(SRCROOT)/gap5/hache_table.h
tg_index_common.o: $(SRCROOT)/gap5/io_utils.h
tg_index_common.o: $(SRCROOT)/gap5/tg_anno.h
tg_index_common.o: $(SRCROOT)/gap5/tg_bin.h
tg_index_common.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_index_common.o: $(SRCROOT)/gap5/tg_contig.h
tg_index_common.o: $(SRCROOT)/gap5/tg_gio.h
tg_index_common.o: $(SRCROOT)/gap5/tg_iface.h
tg_index_common.o: $(SRCROOT)/gap5/tg_index.h
tg_index_common.o: $(SRCROOT)/gap5/tg_index_common.h
tg_index_common.o: $(SRCROOT)/gap5/tg_library.h
tg_index_common.o: $(SRCROOT)/gap5/tg_register.h
tg_index_common.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_index_common.o: $(SRCROOT)/gap5/tg_sequence.h
tg_index_common.o: $(SRCROOT)/gap5/tg_struct.h
tg_index_common.o: $(SRCROOT)/gap5/tg_tcl.h
tg_index_common.o: $(SRCROOT)/gap5/tg_track.h
tg_index_common.o: $(SRCROOT)/gap5/tg_utils.h
tg_library.o: $(PWD)/staden_config.h
tg_library.o: $(SRCROOT)/Misc/array.h
tg_library.o: $(SRCROOT)/Misc/misc.h
tg_library.o: $(SRCROOT)/Misc/os.h
tg_library.o: $(SRCROOT)/Misc/tree.h
tg_library.o: $(SRCROOT)/Misc/xalloc.h
tg_library.o: $(SRCROOT)/Misc/xerror.h
tg_library.o: $(SRCROOT)/gap5/b+tree2.h
tg_library.o: $(SRCROOT)/gap5/g-alloc.h
tg_library.o: $(SRCROOT)/gap5/g-connect.h
tg_library.o: $(SRCROOT)/gap5/g-db.h
tg_library.o: $(SRCROOT)/gap5/g-defs.h
tg_library.o: $(SRCROOT)/gap5/g-error.h
tg_library.o: $(SRCROOT)/gap5/g-filedefs.h
tg_library.o: $(SRCROOT)/gap5/g-io.h
tg_library.o: $(SRCROOT)/gap5/g-misc.h
tg_library.o: $(SRCROOT)/gap5/g-os.h
tg_library.o: $(SRCROOT)/gap5/g-request.h
tg_library.o: $(SRCROOT)/gap5/g-struct.h
tg_library.o: $(SRCROOT)/gap5/g.h
tg_library.o: $(SRCROOT)/gap5/hache_table.h
tg_library.o: $(SRCROOT)/gap5/io_utils.h
tg_library.o: $(SRCROOT)/gap5/tg_anno.h
tg_library.o: $(SRCROOT)/gap5/tg_bin.h
tg_library.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_library.o: $(SRCROOT)/gap5/tg_contig.h
tg_library.o: $(SRCROOT)/gap5/tg_gio.h
tg_library.o: $(SRCROOT)/gap5/tg_iface.h
tg_library.o: $(SRCROOT)/gap5/tg_library.h
tg_library.o: $(SRCROOT)/gap5/tg_register.h
tg_library.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_library.o: $(SRCROOT)/gap5/tg_sequence.h
tg_library.o: $(SRCROOT)/gap5/tg_struct.h
tg_library.o: $(SRCROOT)/gap5/tg_tcl.h
tg_library.o: $(SRCROOT)/gap5/tg_track.h
tg_library.o: $(SRCROOT)/gap5/tg_utils.h
tg_register.o: $(PWD)/staden_config.h
tg_register.o: $(SRCROOT)/Misc/array.h
tg_register.o: $(SRCROOT)/Misc/misc.h
tg_register.o: $(SRCROOT)/Misc/os.h
tg_register.o: $(SRCROOT)/Misc/tree.h
tg_register.o: $(SRCROOT)/Misc/xalloc.h
tg_register.o: $(SRCROOT)/Misc/xerror.h
tg_register.o: $(SRCROOT)/gap5/b+tree2.h
tg_register.o: $(SRCROOT)/gap5/g-alloc.h
tg_register.o: $(SRCROOT)/gap5/g-connect.h
tg_register.o: $(SRCROOT)/gap5/g-db.h
tg_register.o: $(SRCROOT)/gap5/g-defs.h
tg_register.o: $(SRCROOT)/gap5/g-error.h
tg_register.o: $(SRCROOT)/gap5/g-filedefs.h
tg_register.o: $(SRCROOT)/gap5/g-io.h
tg_register.o: $(SRCROOT)/gap5/g-misc.h
tg_register.o: $(SRCROOT)/gap5/g-os.h
tg_register.o: $(SRCROOT)/gap5/g-request.h
tg_register.o: $(SRCROOT)/gap5/g-struct.h
tg_register.o: $(SRCROOT)/gap5/g.h
tg_register.o: $(SRCROOT)/gap5/hache_table.h
tg_register.o: $(SRCROOT)/gap5/io_utils.h
tg_register.o: $(SRCROOT)/gap5/tg_anno.h
tg_register.o: $(SRCROOT)/gap5/tg_bin.h
tg_register.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_register.o: $(SRCROOT)/gap5/tg_contig.h
tg_register.o: $(SRCROOT)/gap5/tg_gio.h
tg_register.o: $(SRCROOT)/gap5/tg_iface.h
tg_register.o: $(SRCROOT)/gap5/tg_library.h
tg_register.o: $(SRCROOT)/gap5/tg_register.h
tg_register.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_register.o: $(SRCROOT)/gap5/tg_sequence.h
tg_register.o: $(SRCROOT)/gap5/tg_struct.h
tg_register.o: $(SRCROOT)/gap5/tg_tcl.h
tg_register.o: $(SRCROOT)/gap5/tg_track.h
tg_register.o: $(SRCROOT)/gap5/tg_utils.h
tg_register.o: $(SRCROOT)/tk_utils/tcl_utils.h
tg_register.o: $(SRCROOT)/tk_utils/text_output.h
tg_scaffold.o: $(PWD)/staden_config.h
tg_scaffold.o: $(SRCROOT)/Misc/array.h
tg_scaffold.o: $(SRCROOT)/Misc/misc.h
tg_scaffold.o: $(SRCROOT)/Misc/os.h
tg_scaffold.o: $(SRCROOT)/Misc/tree.h
tg_scaffold.o: $(SRCROOT)/Misc/xalloc.h
tg_scaffold.o: $(SRCROOT)/Misc/xerror.h
tg_scaffold.o: $(SRCROOT)/gap5/b+tree2.h
tg_scaffold.o: $(SRCROOT)/gap5/consensus.h
tg_scaffold.o: $(SRCROOT)/gap5/g-alloc.h
tg_scaffold.o: $(SRCROOT)/gap5/g-connect.h
tg_scaffold.o: $(SRCROOT)/gap5/g-db.h
tg_scaffold.o: $(SRCROOT)/gap5/g-defs.h
tg_scaffold.o: $(SRCROOT)/gap5/g-error.h
tg_scaffold.o: $(SRCROOT)/gap5/g-filedefs.h
tg_scaffold.o: $(SRCROOT)/gap5/g-io.h
tg_scaffold.o: $(SRCROOT)/gap5/g-misc.h
tg_scaffold.o: $(SRCROOT)/gap5/g-os.h
tg_scaffold.o: $(SRCROOT)/gap5/g-request.h
tg_scaffold.o: $(SRCROOT)/gap5/g-struct.h
tg_scaffold.o: $(SRCROOT)/gap5/g.h
tg_scaffold.o: $(SRCROOT)/gap5/gap4_compat.h
tg_scaffold.o: $(SRCROOT)/gap5/hache_table.h
tg_scaffold.o: $(SRCROOT)/gap5/io_utils.h
tg_scaffold.o: $(SRCROOT)/gap5/list_proc.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_anno.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_bin.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_contig.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_gio.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_iface.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_library.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_register.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_sequence.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_struct.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_tcl.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_track.h
tg_scaffold.o: $(SRCROOT)/gap5/tg_utils.h
tg_sequence.o: $(PWD)/staden_config.h
tg_sequence.o: $(SRCROOT)/Misc/array.h
tg_sequence.o: $(SRCROOT)/Misc/misc.h
tg_sequence.o: $(SRCROOT)/Misc/os.h
tg_sequence.o: $(SRCROOT)/Misc/tree.h
tg_sequence.o: $(SRCROOT)/Misc/xalloc.h
tg_sequence.o: $(SRCROOT)/Misc/xerror.h
tg_sequence.o: $(SRCROOT)/gap5/b+tree2.h
tg_sequence.o: $(SRCROOT)/gap5/consensus.h
tg_sequence.o: $(SRCROOT)/gap5/g-alloc.h
tg_sequence.o: $(SRCROOT)/gap5/g-connect.h
tg_sequence.o: $(SRCROOT)/gap5/g-db.h
tg_sequence.o: $(SRCROOT)/gap5/g-defs.h
tg_sequence.o: $(SRCROOT)/gap5/g-error.h
tg_sequence.o: $(SRCROOT)/gap5/g-filedefs.h
tg_sequence.o: $(SRCROOT)/gap5/g-io.h
tg_sequence.o: $(SRCROOT)/gap5/g-misc.h
tg_sequence.o: $(SRCROOT)/gap5/g-os.h
tg_sequence.o: $(SRCROOT)/gap5/g-request.h
tg_sequence.o: $(SRCROOT)/gap5/g-struct.h
tg_sequence.o: $(SRCROOT)/gap5/g.h
tg_sequence.o: $(SRCROOT)/gap5/hache_table.h
tg_sequence.o: $(SRCROOT)/gap5/io_utils.h
tg_sequence.o: $(SRCROOT)/gap5/tg_anno.h
tg_sequence.o: $(SRCROOT)/gap5/tg_bin.h
tg_sequence.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_sequence.o: $(SRCROOT)/gap5/tg_contig.h
tg_sequence.o: $(SRCROOT)/gap5/tg_gio.h
tg_sequence.o: $(SRCROOT)/gap5/tg_iface.h
tg_sequence.o: $(SRCROOT)/gap5/tg_library.h
tg_sequence.o: $(SRCROOT)/gap5/tg_register.h
tg_sequence.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_sequence.o: $(SRCROOT)/gap5/tg_sequence.h
tg_sequence.o: $(SRCROOT)/gap5/tg_struct.h
tg_sequence.o: $(SRCROOT)/gap5/tg_tcl.h
tg_sequence.o: $(SRCROOT)/gap5/tg_track.h
tg_sequence.o: $(SRCROOT)/gap5/tg_utils.h
tg_sequence.o: $(SRCROOT)/seq_utils/dna_utils.h
tg_tcl.o: $(PWD)/staden_config.h
tg_tcl.o: $(SRCROOT)/Misc/array.h
tg_tcl.o: $(SRCROOT)/Misc/misc.h
tg_tcl.o: $(SRCROOT)/Misc/os.h
tg_tcl.o: $(SRCROOT)/Misc/tree.h
tg_tcl.o: $(SRCROOT)/Misc/xalloc.h
tg_tcl.o: $(SRCROOT)/Misc/xerror.h
tg_tcl.o: $(SRCROOT)/gap5/b+tree2.h
tg_tcl.o: $(SRCROOT)/gap5/consensus.h
tg_tcl.o: $(SRCROOT)/gap5/g-alloc.h
tg_tcl.o: $(SRCROOT)/gap5/g-connect.h
tg_tcl.o: $(SRCROOT)/gap5/g-db.h
tg_tcl.o: $(SRCROOT)/gap5/g-defs.h
tg_tcl.o: $(SRCROOT)/gap5/g-error.h
tg_tcl.o: $(SRCROOT)/gap5/g-filedefs.h
tg_tcl.o: $(SRCROOT)/gap5/g-io.h
tg_tcl.o: $(SRCROOT)/gap5/g-misc.h
tg_tcl.o: $(SRCROOT)/gap5/g-os.h
tg_tcl.o: $(SRCROOT)/gap5/g-request.h
tg_tcl.o: $(SRCROOT)/gap5/g-struct.h
tg_tcl.o: $(SRCROOT)/gap5/g.h
tg_tcl.o: $(SRCROOT)/gap5/gap4_compat.h
tg_tcl.o: $(SRCROOT)/gap5/gap_cli_arg.h
tg_tcl.o: $(SRCROOT)/gap5/hache_table.h
tg_tcl.o: $(SRCROOT)/gap5/io_utils.h
tg_tcl.o: $(SRCROOT)/gap5/tg_anno.h
tg_tcl.o: $(SRCROOT)/gap5/tg_bin.h
tg_tcl.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_tcl.o: $(SRCROOT)/gap5/tg_check.h
tg_tcl.o: $(SRCROOT)/gap5/tg_contig.h
tg_tcl.o: $(SRCROOT)/gap5/tg_gio.h
tg_tcl.o: $(SRCROOT)/gap5/tg_iface.h
tg_tcl.o: $(SRCROOT)/gap5/tg_library.h
tg_tcl.o: $(SRCROOT)/gap5/tg_register.h
tg_tcl.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_tcl.o: $(SRCROOT)/gap5/tg_sequence.h
tg_tcl.o: $(SRCROOT)/gap5/tg_struct.h
tg_tcl.o: $(SRCROOT)/gap5/tg_tcl.h
tg_tcl.o: $(SRCROOT)/gap5/tg_track.h
tg_tcl.o: $(SRCROOT)/gap5/tg_utils.h
tg_tcl.o: $(SRCROOT)/tk_utils/tcl_utils.h
tg_track.o: $(PWD)/staden_config.h
tg_track.o: $(SRCROOT)/Misc/array.h
tg_track.o: $(SRCROOT)/Misc/misc.h
tg_track.o: $(SRCROOT)/Misc/os.h
tg_track.o: $(SRCROOT)/Misc/tree.h
tg_track.o: $(SRCROOT)/Misc/xalloc.h
tg_track.o: $(SRCROOT)/Misc/xerror.h
tg_track.o: $(SRCROOT)/gap5/b+tree2.h
tg_track.o: $(SRCROOT)/gap5/g-alloc.h
tg_track.o: $(SRCROOT)/gap5/g-connect.h
tg_track.o: $(SRCROOT)/gap5/g-db.h
tg_track.o: $(SRCROOT)/gap5/g-defs.h
tg_track.o: $(SRCROOT)/gap5/g-error.h
tg_track.o: $(SRCROOT)/gap5/g-filedefs.h
tg_track.o: $(SRCROOT)/gap5/g-io.h
tg_track.o: $(SRCROOT)/gap5/g-misc.h
tg_track.o: $(SRCROOT)/gap5/g-os.h
tg_track.o: $(SRCROOT)/gap5/g-request.h
tg_track.o: $(SRCROOT)/gap5/g-struct.h
tg_track.o: $(SRCROOT)/gap5/g.h
tg_track.o: $(SRCROOT)/gap5/hache_table.h
tg_track.o: $(SRCROOT)/gap5/io_utils.h
tg_track.o: $(SRCROOT)/gap5/tg_anno.h
tg_track.o: $(SRCROOT)/gap5/tg_bin.h
tg_track.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_track.o: $(SRCROOT)/gap5/tg_contig.h
tg_track.o: $(SRCROOT)/gap5/tg_gio.h
tg_track.o: $(SRCROOT)/gap5/tg_iface.h
tg_track.o: $(SRCROOT)/gap5/tg_library.h
tg_track.o: $(SRCROOT)/gap5/tg_register.h
tg_track.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_track.o: $(SRCROOT)/gap5/tg_sequence.h
tg_track.o: $(SRCROOT)/gap5/tg_struct.h
tg_track.o: $(SRCROOT)/gap5/tg_tcl.h
tg_track.o: $(SRCROOT)/gap5/tg_track.h
tg_track.o: $(SRCROOT)/gap5/tg_utils.h
tg_tracks.o: $(PWD)/staden_config.h
tg_tracks.o: $(SRCROOT)/Misc/array.h
tg_tracks.o: $(SRCROOT)/Misc/misc.h
tg_tracks.o: $(SRCROOT)/Misc/os.h
tg_tracks.o: $(SRCROOT)/Misc/tree.h
tg_tracks.o: $(SRCROOT)/Misc/xalloc.h
tg_tracks.o: $(SRCROOT)/Misc/xerror.h
tg_tracks.o: $(SRCROOT)/gap5/b+tree2.h
tg_tracks.o: $(SRCROOT)/gap5/g-alloc.h
tg_tracks.o: $(SRCROOT)/gap5/g-connect.h
tg_tracks.o: $(SRCROOT)/gap5/g-db.h
tg_tracks.o: $(SRCROOT)/gap5/g-defs.h
tg_tracks.o: $(SRCROOT)/gap5/g-error.h
tg_tracks.o: $(SRCROOT)/gap5/g-filedefs.h
tg_tracks.o: $(SRCROOT)/gap5/g-io.h
tg_tracks.o: $(SRCROOT)/gap5/g-misc.h
tg_tracks.o: $(SRCROOT)/gap5/g-os.h
tg_tracks.o: $(SRCROOT)/gap5/g-request.h
tg_tracks.o: $(SRCROOT)/gap5/g-struct.h
tg_tracks.o: $(SRCROOT)/gap5/g.h
tg_tracks.o: $(SRCROOT)/gap5/hache_table.h
tg_tracks.o: $(SRCROOT)/gap5/io_utils.h
tg_tracks.o: $(SRCROOT)/gap5/tg_anno.h
tg_tracks.o: $(SRCROOT)/gap5/tg_bin.h
tg_tracks.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_tracks.o: $(SRCROOT)/gap5/tg_contig.h
tg_tracks.o: $(SRCROOT)/gap5/tg_gio.h
tg_tracks.o: $(SRCROOT)/gap5/tg_iface.h
tg_tracks.o: $(SRCROOT)/gap5/tg_library.h
tg_tracks.o: $(SRCROOT)/gap5/tg_register.h
tg_tracks.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_tracks.o: $(SRCROOT)/gap5/tg_sequence.h
tg_tracks.o: $(SRCROOT)/gap5/tg_struct.h
tg_tracks.o: $(SRCROOT)/gap5/tg_tcl.h
tg_tracks.o: $(SRCROOT)/gap5/tg_track.h
tg_tracks.o: $(SRCROOT)/gap5/tg_tracks.h
tg_tracks.o: $(SRCROOT)/gap5/tg_utils.h
tg_utils.o: $(PWD)/staden_config.h
tg_utils.o: $(SRCROOT)/Misc/array.h
tg_utils.o: $(SRCROOT)/Misc/misc.h
tg_utils.o: $(SRCROOT)/Misc/os.h
tg_utils.o: $(SRCROOT)/Misc/tree.h
tg_utils.o: $(SRCROOT)/Misc/xalloc.h
tg_utils.o: $(SRCROOT)/Misc/xerror.h
tg_utils.o: $(SRCROOT)/gap5/b+tree2.h
tg_utils.o: $(SRCROOT)/gap5/g-alloc.h
tg_utils.o: $(SRCROOT)/gap5/g-connect.h
tg_utils.o: $(SRCROOT)/gap5/g-db.h
tg_utils.o: $(SRCROOT)/gap5/g-defs.h
tg_utils.o: $(SRCROOT)/gap5/g-error.h
tg_utils.o: $(SRCROOT)/gap5/g-filedefs.h
tg_utils.o: $(SRCROOT)/gap5/g-io.h
tg_utils.o: $(SRCROOT)/gap5/g-misc.h
tg_utils.o: $(SRCROOT)/gap5/g-os.h
tg_utils.o: $(SRCROOT)/gap5/g-request.h
tg_utils.o: $(SRCROOT)/gap5/g-struct.h
tg_utils.o: $(SRCROOT)/gap5/g.h
tg_utils.o: $(SRCROOT)/gap5/hache_table.h
tg_utils.o: $(SRCROOT)/gap5/io_utils.h
tg_utils.o: $(SRCROOT)/gap5/tg_anno.h
tg_utils.o: $(SRCROOT)/gap5/tg_bin.h
tg_utils.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_utils.o: $(SRCROOT)/gap5/tg_contig.h
tg_utils.o: $(SRCROOT)/gap5/tg_gio.h
tg_utils.o: $(SRCROOT)/gap5/tg_iface.h
tg_utils.o: $(SRCROOT)/gap5/tg_library.h
tg_utils.o: $(SRCROOT)/gap5/tg_register.h
tg_utils.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_utils.o: $(SRCROOT)/gap5/tg_sequence.h
tg_utils.o: $(SRCROOT)/gap5/tg_struct.h
tg_utils.o: $(SRCROOT)/gap5/tg_tcl.h
tg_utils.o: $(SRCROOT)/gap5/tg_track.h
tg_utils.o: $(SRCROOT)/gap5/tg_utils.h
tg_view.o: $(PWD)/staden_config.h
tg_view.o: $(SRCROOT)/Misc/array.h
tg_view.o: $(SRCROOT)/Misc/misc.h
tg_view.o: $(SRCROOT)/Misc/os.h
tg_view.o: $(SRCROOT)/Misc/tree.h
tg_view.o: $(SRCROOT)/Misc/xalloc.h
tg_view.o: $(SRCROOT)/Misc/xerror.h
tg_view.o: $(SRCROOT)/gap5/b+tree2.h
tg_view.o: $(SRCROOT)/gap5/g-alloc.h
tg_view.o: $(SRCROOT)/gap5/g-connect.h
tg_view.o: $(SRCROOT)/gap5/g-db.h
tg_view.o: $(SRCROOT)/gap5/g-defs.h
tg_view.o: $(SRCROOT)/gap5/g-error.h
tg_view.o: $(SRCROOT)/gap5/g-filedefs.h
tg_view.o: $(SRCROOT)/gap5/g-io.h
tg_view.o: $(SRCROOT)/gap5/g-misc.h
tg_view.o: $(SRCROOT)/gap5/g-os.h
tg_view.o: $(SRCROOT)/gap5/g-request.h
tg_view.o: $(SRCROOT)/gap5/g-struct.h
tg_view.o: $(SRCROOT)/gap5/g.h
tg_view.o: $(SRCROOT)/gap5/hache_table.h
tg_view.o: $(SRCROOT)/gap5/io_utils.h
tg_view.o: $(SRCROOT)/gap5/tg_anno.h
tg_view.o: $(SRCROOT)/gap5/tg_bin.h
tg_view.o: $(SRCROOT)/gap5/tg_cache_item.h
tg_view.o: $(SRCROOT)/gap5/tg_contig.h
tg_view.o: $(SRCROOT)/gap5/tg_gio.h
tg_view.o: $(SRCROOT)/gap5/tg_iface.h
tg_view.o: $(SRCROOT)/gap5/tg_library.h
tg_view.o: $(SRCROOT)/gap5/tg_register.h
tg_view.o: $(SRCROOT)/gap5/tg_scaffold.h
tg_view.o: $(SRCROOT)/gap5/tg_sequence.h
tg_view.o: $(SRCROOT)/gap5/tg_struct.h
tg_view.o: $(SRCROOT)/gap5/tg_tcl.h
tg_view.o: $(SRCROOT)/gap5/tg_track.h
tg_view.o: $(SRCROOT)/gap5/tg_utils.h
tk-io-reg.o: $(PWD)/staden_config.h
tk-io-reg.o: $(SRCROOT)/Misc/array.h
tk-io-reg.o: $(SRCROOT)/Misc/misc.h
tk-io-reg.o: $(SRCROOT)/Misc/os.h
tk-io-reg.o: $(SRCROOT)/Misc/tree.h
tk-io-reg.o: $(SRCROOT)/Misc/xalloc.h
tk-io-reg.o: $(SRCROOT)/Misc/xerror.h
tk-io-reg.o: $(SRCROOT)/gap5/b+tree2.h
tk-io-reg.o: $(SRCROOT)/gap5/contig_selector.h
tk-io-reg.o: $(SRCROOT)/gap5/cs-object.h
tk-io-reg.o: $(SRCROOT)/gap5/g-alloc.h
tk-io-reg.o: $(SRCROOT)/gap5/g-connect.h
tk-io-reg.o: $(SRCROOT)/gap5/g-db.h
tk-io-reg.o: $(SRCROOT)/gap5/g-defs.h
tk-io-reg.o: $(SRCROOT)/gap5/g-error.h
tk-io-reg.o: $(SRCROOT)/gap5/g-filedefs.h
tk-io-reg.o: $(SRCROOT)/gap5/g-io.h
tk-io-reg.o: $(SRCROOT)/gap5/g-misc.h
tk-io-reg.o: $(SRCROOT)/gap5/g-os.h
tk-io-reg.o: $(SRCROOT)/gap5/g-request.h
tk-io-reg.o: $(SRCROOT)/gap5/g-struct.h
tk-io-reg.o: $(SRCROOT)/gap5/g.h
tk-io-reg.o: $(SRCROOT)/gap5/gap4_compat.h
tk-io-reg.o: $(SRCROOT)/gap5/gap_cli_arg.h
tk-io-reg.o: $(SRCROOT)/gap5/gap_globals.h
tk-io-reg.o: $(SRCROOT)/gap5/hache_table.h
tk-io-reg.o: $(SRCROOT)/gap5/io_utils.h
tk-io-reg.o: $(SRCROOT)/gap5/list.h
tk-io-reg.o: $(SRCROOT)/gap5/newgap_cmds.h
tk-io-reg.o: $(SRCROOT)/gap5/newgap_structs.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_anno.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_bin.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_cache_item.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_contig.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_gio.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_iface.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_library.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_register.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_scaffold.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_sequence.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_struct.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_tcl.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_track.h
tk-io-reg.o: $(SRCROOT)/gap5/tg_utils.h
tk-io-reg.o: $(SRCROOT)/gap5/tk-io-reg.h
tk-io-reg.o: $(SRCROOT)/tk_utils/canvas_box.h
tk-io-reg.o: $(SRCROOT)/tk_utils/tclXkeylist.h
tk-io-reg.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkAppInit.o: $(PWD)/staden_config.h
tkAppInit.o: $(SRCROOT)/Misc/array.h
tkAppInit.o: $(SRCROOT)/Misc/misc.h
tkAppInit.o: $(SRCROOT)/Misc/os.h
tkAppInit.o: $(SRCROOT)/Misc/tree.h
tkAppInit.o: $(SRCROOT)/Misc/xalloc.h
tkAppInit.o: $(SRCROOT)/Misc/xerror.h
tkAppInit.o: $(SRCROOT)/gap5/b+tree2.h
tkAppInit.o: $(SRCROOT)/gap5/g-alloc.h
tkAppInit.o: $(SRCROOT)/gap5/g-connect.h
tkAppInit.o: $(SRCROOT)/gap5/g-db.h
tkAppInit.o: $(SRCROOT)/gap5/g-defs.h
tkAppInit.o: $(SRCROOT)/gap5/g-error.h
tkAppInit.o: $(SRCROOT)/gap5/g-filedefs.h
tkAppInit.o: $(SRCROOT)/gap5/g-io.h
tkAppInit.o: $(SRCROOT)/gap5/g-misc.h
tkAppInit.o: $(SRCROOT)/gap5/g-os.h
tkAppInit.o: $(SRCROOT)/gap5/g-request.h
tkAppInit.o: $(SRCROOT)/gap5/g-struct.h
tkAppInit.o: $(SRCROOT)/gap5/g.h
tkAppInit.o: $(SRCROOT)/gap5/gap-tcl.h
tkAppInit.o: $(SRCROOT)/gap5/gap_globals.h
tkAppInit.o: $(SRCROOT)/gap5/hache_table.h
tkAppInit.o: $(SRCROOT)/gap5/io_utils.h
tkAppInit.o: $(SRCROOT)/gap5/list.h
tkAppInit.o: $(SRCROOT)/gap5/newgap_cmds.h
tkAppInit.o: $(SRCROOT)/gap5/tg_anno.h
tkAppInit.o: $(SRCROOT)/gap5/tg_bin.h
tkAppInit.o: $(SRCROOT)/gap5/tg_cache_item.h
tkAppInit.o: $(SRCROOT)/gap5/tg_contig.h
tkAppInit.o: $(SRCROOT)/gap5/tg_gio.h
tkAppInit.o: $(SRCROOT)/gap5/tg_iface.h
tkAppInit.o: $(SRCROOT)/gap5/tg_library.h
tkAppInit.o: $(SRCROOT)/gap5/tg_register.h
tkAppInit.o: $(SRCROOT)/gap5/tg_scaffold.h
tkAppInit.o: $(SRCROOT)/gap5/tg_sequence.h
tkAppInit.o: $(SRCROOT)/gap5/tg_struct.h
tkAppInit.o: $(SRCROOT)/gap5/tg_tcl.h
tkAppInit.o: $(SRCROOT)/gap5/tg_track.h
tkAppInit.o: $(SRCROOT)/gap5/tg_utils.h
tkAppInit.o: $(SRCROOT)/tk_utils/tcl_utils.h
tkEdNames.o: $(PWD)/staden_config.h
tkEdNames.o: $(SRCROOT)/Misc/array.h
tkEdNames.o: $(SRCROOT)/Misc/misc.h
tkEdNames.o: $(SRCROOT)/Misc/os.h
tkEdNames.o: $(SRCROOT)/Misc/tree.h
tkEdNames.o: $(SRCROOT)/Misc/xalloc.h
tkEdNames.o: $(SRCROOT)/Misc/xerror.h
tkEdNames.o: $(SRCROOT)/gap5/b+tree2.h
tkEdNames.o: $(SRCROOT)/gap5/consensus.h
tkEdNames.o: $(SRCROOT)/gap5/editor_view.h
tkEdNames.o: $(SRCROOT)/gap5/g-alloc.h
tkEdNames.o: $(SRCROOT)/gap5/g-connect.h
tkEdNames.o: $(SRCROOT)/gap5/g-db.h
tkEdNames.o: $(SRCROOT)/gap5/g-defs.h
tkEdNames.o: $(SRCROOT)/gap5/g-error.h
tkEdNames.o: $(SRCROOT)/gap5/g-filedefs.h
tkEdNames.o: $(SRCROOT)/gap5/g-io.h
tkEdNames.o: $(SRCROOT)/gap5/g-misc.h
tkEdNames.o: $(SRCROOT)/gap5/g-os.h
tkEdNames.o: $(SRCROOT)/gap5/g-request.h
tkEdNames.o: $(SRCROOT)/gap5/g-struct.h
tkEdNames.o: $(SRCROOT)/gap5/g.h
tkEdNames.o: $(SRCROOT)/gap5/hache_table.h
tkEdNames.o: $(SRCROOT)/gap5/io_utils.h
tkEdNames.o: $(SRCROOT)/gap5/tg_anno.h
tkEdNames.o: $(SRCROOT)/gap5/tg_bin.h
tkEdNames.o: $(SRCROOT)/gap5/tg_cache_item.h
tkEdNames.o: $(SRCROOT)/gap5/tg_contig.h
tkEdNames.o: $(SRCROOT)/gap5/tg_gio.h
tkEdNames.o: $(SRCROOT)/gap5/tg_iface.h
tkEdNames.o: $(SRCROOT)/gap5/tg_library.h
tkEdNames.o: $(SRCROOT)/gap5/tg_register.h
tkEdNames.o: $(SRCROOT)/gap5/tg_scaffold.h
tkEdNames.o: $(SRCROOT)/gap5/tg_sequence.h
tkEdNames.o: $(SRCROOT)/gap5/tg_struct.h
tkEdNames.o: $(SRCROOT)/gap5/tg_tcl.h
tkEdNames.o: $(SRCROOT)/gap5/tg_track.h
tkEdNames.o: $(SRCROOT)/gap5/tg_utils.h
tkEdNames.o: $(SRCROOT)/gap5/tkEdNames.h
tkEdNames.o: $(SRCROOT)/gap5/tkEditor.h
tkEdNames.o: $(SRCROOT)/tk_utils/intrinsic_type.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/tk_defs.h
tkEditor.o: $(PWD)/staden_config.h
tkEditor.o: $(SRCROOT)/Misc/array.h
tkEditor.o: $(SRCROOT)/Misc/dstring.h
tkEditor.o: $(SRCROOT)/Misc/misc.h
tkEditor.o: $(SRCROOT)/Misc/os.h
tkEditor.o: $(SRCROOT)/Misc/tree.h
tkEditor.o: $(SRCROOT)/Misc/xalloc.h
tkEditor.o: $(SRCROOT)/Misc/xerror.h
tkEditor.o: $(SRCROOT)/gap5/b+tree2.h
tkEditor.o: $(SRCROOT)/gap5/consensus.h
tkEditor.o: $(SRCROOT)/gap5/editor_oligo.h
tkEditor.o: $(SRCROOT)/gap5/editor_view.h
tkEditor.o: $(SRCROOT)/gap5/g-alloc.h
tkEditor.o: $(SRCROOT)/gap5/g-connect.h
tkEditor.o: $(SRCROOT)/gap5/g-db.h
tkEditor.o: $(SRCROOT)/gap5/g-defs.h
tkEditor.o: $(SRCROOT)/gap5/g-error.h
tkEditor.o: $(SRCROOT)/gap5/g-filedefs.h
tkEditor.o: $(SRCROOT)/gap5/g-io.h
tkEditor.o: $(SRCROOT)/gap5/g-misc.h
tkEditor.o: $(SRCROOT)/gap5/g-os.h
tkEditor.o: $(SRCROOT)/gap5/g-request.h
tkEditor.o: $(SRCROOT)/gap5/g-struct.h
tkEditor.o: $(SRCROOT)/gap5/g.h
tkEditor.o: $(SRCROOT)/gap5/gap4_compat.h
tkEditor.o: $(SRCROOT)/gap5/gap_globals.h
tkEditor.o: $(SRCROOT)/gap5/hache_table.h
tkEditor.o: $(SRCROOT)/gap5/io_utils.h
tkEditor.o: $(SRCROOT)/gap5/notedb.h
tkEditor.o: $(SRCROOT)/gap5/tagdb.h
tkEditor.o: $(SRCROOT)/gap5/tg_anno.h
tkEditor.o: $(SRCROOT)/gap5/tg_bin.h
tkEditor.o: $(SRCROOT)/gap5/tg_cache_item.h
tkEditor.o: $(SRCROOT)/gap5/tg_contig.h
tkEditor.o: $(SRCROOT)/gap5/tg_gio.h
tkEditor.o: $(SRCROOT)/gap5/tg_iface.h
tkEditor.o: $(SRCROOT)/gap5/tg_library.h
tkEditor.o: $(SRCROOT)/gap5/tg_register.h
tkEditor.o: $(SRCROOT)/gap5/tg_scaffold.h
tkEditor.o: $(SRCROOT)/gap5/tg_sequence.h
tkEditor.o: $(SRCROOT)/gap5/tg_struct.h
tkEditor.o: $(SRCROOT)/gap5/tg_tcl.h
tkEditor.o: $(SRCROOT)/gap5/tg_track.h
tkEditor.o: $(SRCROOT)/gap5/tg_utils.h
tkEditor.o: $(SRCROOT)/gap5/tkEdNames.h
tkEditor.o: $(SRCROOT)/gap5/tkEditor.h
tkEditor.o: $(SRCROOT)/gap5/tman_display.h
tkEditor.o: $(SRCROOT)/gap5/tman_interface.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_display.o: $(PWD)/staden_config.h
tman_display.o: $(SRCROOT)/Misc/array.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/tree.h
tman_display.o: $(SRCROOT)/Misc/xalloc.h
tman_display.o: $(SRCROOT)/Misc/xerror.h
tman_display.o: $(SRCROOT)/gap5/b+tree2.h
tman_display.o: $(SRCROOT)/gap5/consensus.h
tman_display.o: $(SRCROOT)/gap5/editor_view.h
tman_display.o: $(SRCROOT)/gap5/g-alloc.h
tman_display.o: $(SRCROOT)/gap5/g-connect.h
tman_display.o: $(SRCROOT)/gap5/g-db.h
tman_display.o: $(SRCROOT)/gap5/g-defs.h
tman_display.o: $(SRCROOT)/gap5/g-error.h
tman_display.o: $(SRCROOT)/gap5/g-filedefs.h
tman_display.o: $(SRCROOT)/gap5/g-io.h
tman_display.o: $(SRCROOT)/gap5/g-misc.h
tman_display.o: $(SRCROOT)/gap5/g-os.h
tman_display.o: $(SRCROOT)/gap5/g-request.h
tman_display.o: $(SRCROOT)/gap5/g-struct.h
tman_display.o: $(SRCROOT)/gap5/g.h
tman_display.o: $(SRCROOT)/gap5/gap_globals.h
tman_display.o: $(SRCROOT)/gap5/hache_table.h
tman_display.o: $(SRCROOT)/gap5/io_utils.h
tman_display.o: $(SRCROOT)/gap5/tg_anno.h
tman_display.o: $(SRCROOT)/gap5/tg_bin.h
tman_display.o: $(SRCROOT)/gap5/tg_cache_item.h
tman_display.o: $(SRCROOT)/gap5/tg_contig.h
tman_display.o: $(SRCROOT)/gap5/tg_gio.h
tman_display.o: $(SRCROOT)/gap5/tg_iface.h
tman_display.o: $(SRCROOT)/gap5/tg_library.h
tman_display.o: $(SRCROOT)/gap5/tg_register.h
tman_display.o: $(SRCROOT)/gap5/tg_scaffold.h
tman_display.o: $(SRCROOT)/gap5/tg_sequence.h
tman_display.o: $(SRCROOT)/gap5/tg_struct.h
tman_display.o: $(SRCROOT)/gap5/tg_tcl.h
tman_display.o: $(SRCROOT)/gap5/tg_track.h
tman_display.o: $(SRCROOT)/gap5/tg_utils.h
tman_display.o: $(SRCROOT)/gap5/tkEdNames.h
tman_display.o: $(SRCROOT)/gap5/tkEditor.h
tman_display.o: $(SRCROOT)/gap5/tman_display.h
tman_display.o: $(SRCROOT)/gap5/tman_interface.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/dstring.h
tman_interface.o: $(SRCROOT)/Misc/misc.h
tman_interface.o: $(SRCROOT)/Misc/os.h
tman_interface.o: $(SRCROOT)/Misc/tree.h
tman_interface.o: $(SRCROOT)/Misc/xalloc.h
tman_interface.o: $(SRCROOT)/Misc/xerror.h
tman_interface.o: $(SRCROOT)/gap5/b+tree2.h
tman_interface.o: $(SRCROOT)/gap5/consensus.h
tman_interface.o: $(SRCROOT)/gap5/editor_view.h
tman_interface.o: $(SRCROOT)/gap5/g-alloc.h
tman_interface.o: $(SRCROOT)/gap5/g-connect.h
tman_interface.o: $(SRCROOT)/gap5/g-db.h
tman_interface.o: $(SRCROOT)/gap5/g-defs.h
tman_interface.o: $(SRCROOT)/gap5/g-error.h
tman_interface.o: $(SRCROOT)/gap5/g-filedefs.h
tman_interface.o: $(SRCROOT)/gap5/g-io.h
tman_interface.o: $(SRCROOT)/gap5/g-misc.h
tman_interface.o: $(SRCROOT)/gap5/g-os.h
tman_interface.o: $(SRCROOT)/gap5/g-request.h
tman_interface.o: $(SRCROOT)/gap5/g-struct.h
tman_interface.o: $(SRCROOT)/gap5/g.h
tman_interface.o: $(SRCROOT)/gap5/hache_table.h
tman_interface.o: $(SRCROOT)/gap5/io_utils.h
tman_interface.o: $(SRCROOT)/gap5/tg_anno.h
tman_interface.o: $(SRCROOT)/gap5/tg_bin.h
tman_interface.o: $(SRCROOT)/gap5/tg_cache_item.h
tman_interface.o: $(SRCROOT)/gap5/tg_contig.h
tman_interface.o: $(SRCROOT)/gap5/tg_gio.h
tman_interface.o: $(SRCROOT)/gap5/tg_iface.h
tman_interface.o: $(SRCROOT)/gap5/tg_library.h
tman_interface.o: $(SRCROOT)/gap5/tg_register.h
tman_interface.o: $(SRCROOT)/gap5/tg_scaffold.h
tman_interface.o: $(SRCROOT)/gap5/tg_sequence.h
tman_interface.o: $(SRCROOT)/gap5/tg_struct.h
tman_interface.o: $(SRCROOT)/gap5/tg_tcl.h
tman_interface.o: $(SRCROOT)/gap5/tg_track.h
tman_interface.o: $(SRCROOT)/gap5/tg_utils.h
tman_interface.o: $(SRCROOT)/gap5/tkEdNames.h
tman_interface.o: $(SRCROOT)/gap5/tkEditor.h
tman_interface.o: $(SRCROOT)/gap5/tman_display.h
tman_interface.o: $(SRCROOT)/gap5/tman_interface.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
