source: branches/tree/EDIT4/Makefile

Last change on this file was 18732, checked in by westram, 4 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 66.8 KB
RevLine 
[10954]1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
[2]2
[1617]3.SUFFIXES: .o .cxx .depend
[2]4
[18732]5OBJECTS=$(subst .cxx,.o,$(wildcard *.cxx))
[2]6
[8609]7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
[4855]9
[584]10.cxx.o:
[13443]11        $(A_CXX) $(cflags) $(cxxflags) -c -o $@ $(@:.o=.cxx)  $(CXX_INCLUDES) $(POST_COMPILE) $<
[2]12
[4635]13clean:
[8609]14        rm -f $(OBJECTS) *.a
[4635]15
[8609]16DEPENDS = $(OBJECTS:.o=.depend)
[1617]17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.init:
22        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
23.c.depend:
24        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
25.cxx.depend:
26        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
[2]27
28# DO NOT DELETE THIS LINE -- make depend depends on it.
[1354]29
[2338]30# Do not add dependencies manually - use 'make depend' in $ARBHOME
[9575]31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
[2338]32
33ED4_base.o: ed4_awars.hxx
34ED4_base.o: ed4_class.hxx
35ED4_base.o: ed4_defs.hxx
36ED4_base.o: ed4_edit_string.hxx
[4855]37ED4_base.o: ed4_extern.hxx
[8626]38ED4_base.o: ed4_list.hxx
[2338]39ED4_base.o: ed4_search.hxx
[11023]40ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb.h
41ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
[17944]42ED4_base.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]43ED4_base.o: $(ARBHOME)/INCLUDE/ad_prot.h
44ED4_base.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
45ED4_base.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]46ED4_base.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]47ED4_base.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]48ED4_base.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]49ED4_base.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]50ED4_base.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17944]51ED4_base.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[14263]52ED4_base.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]53ED4_base.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]54ED4_base.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]55ED4_base.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]56ED4_base.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]57ED4_base.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]58ED4_base.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]59ED4_base.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
60ED4_base.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]61ED4_base.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
62ED4_base.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]63ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]64ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[2338]65ED4_base.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]66ED4_base.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]67ED4_base.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]68ED4_base.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[8355]69ED4_base.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[2338]70ED4_base.o: $(ARBHOME)/INCLUDE/aw_root.hxx
71ED4_base.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]72ED4_base.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]73ED4_base.o: $(ARBHOME)/INCLUDE/cb.h
[11034]74ED4_base.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]75ED4_base.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]76ED4_base.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]77ED4_base.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]78ED4_base.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]79ED4_base.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]80ED4_base.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]81ED4_base.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]82ED4_base.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]83ED4_base.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]84ED4_base.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]85ED4_base.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]86ED4_base.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]87
88ED4_block.o: ed4_awars.hxx
89ED4_block.o: ed4_block.hxx
90ED4_block.o: ed4_class.hxx
91ED4_block.o: ed4_defs.hxx
92ED4_block.o: ed4_edit_string.hxx
[8626]93ED4_block.o: ed4_list.hxx
[2338]94ED4_block.o: ed4_search.hxx
95ED4_block.o: ed4_tools.hxx
[17944]96ED4_block.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]97ED4_block.o: $(ARBHOME)/INCLUDE/ad_prot.h
98ED4_block.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
99ED4_block.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]100ED4_block.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]101ED4_block.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]102ED4_block.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]103ED4_block.o: $(ARBHOME)/INCLUDE/arb_msg.h
[16425]104ED4_block.o: $(ARBHOME)/INCLUDE/arb_str.h
[17944]105ED4_block.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]106ED4_block.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]107ED4_block.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]108ED4_block.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]109ED4_block.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]110ED4_block.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]111ED4_block.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]112ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]113ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]114ED4_block.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]115ED4_block.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]116ED4_block.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
117ED4_block.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]118ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]119ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[2338]120ED4_block.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]121ED4_block.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]122ED4_block.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]123ED4_block.o: $(ARBHOME)/INCLUDE/aw_root.hxx
[8723]124ED4_block.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
125ED4_block.o: $(ARBHOME)/INCLUDE/aw_select.hxx
[2338]126ED4_block.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[8762]127ED4_block.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[7272]128ED4_block.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]129ED4_block.o: $(ARBHOME)/INCLUDE/cb.h
[11034]130ED4_block.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]131ED4_block.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]132ED4_block.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]133ED4_block.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]134ED4_block.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]135ED4_block.o: $(ARBHOME)/INCLUDE/dupstr.h
[5885]136ED4_block.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
[16374]137ED4_block.o: $(ARBHOME)/INCLUDE/gb_aci.h
[9516]138ED4_block.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]139ED4_block.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]140ED4_block.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]141ED4_block.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]142ED4_block.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]143ED4_block.o: $(ARBHOME)/INCLUDE/test_global.h
[8696]144ED4_block.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]145ED4_block.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]146
[10054]147ED4_colStat.o: ed4_class.hxx
148ED4_colStat.o: ed4_colStat.hxx
149ED4_colStat.o: ed4_defs.hxx
150ED4_colStat.o: ed4_extern.hxx
151ED4_colStat.o: ed4_search.hxx
[17944]152ED4_colStat.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[10054]153ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_assert.h
154ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_core.h
155ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_error.h
[17944]156ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_mem.h
157ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_strarray.h
158ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_string.h
[10054]159ED4_colStat.o: $(ARBHOME)/INCLUDE/arbdb_base.h
160ED4_colStat.o: $(ARBHOME)/INCLUDE/arbtools.h
161ED4_colStat.o: $(ARBHOME)/INCLUDE/attributes.h
162ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_base.hxx
163ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
164ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_device.hxx
165ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]166ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[10054]167ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
168ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
169ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_position.hxx
170ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_root.hxx
171ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_window.hxx
172ED4_colStat.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
173ED4_colStat.o: $(ARBHOME)/INCLUDE/cb.h
[11034]174ED4_colStat.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]175ED4_colStat.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]176ED4_colStat.o: $(ARBHOME)/INCLUDE/chartable.h
[10054]177ED4_colStat.o: $(ARBHOME)/INCLUDE/cxxforward.h
178ED4_colStat.o: $(ARBHOME)/INCLUDE/downcast.h
179ED4_colStat.o: $(ARBHOME)/INCLUDE/dupstr.h
180ED4_colStat.o: $(ARBHOME)/INCLUDE/gccver.h
181ED4_colStat.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]182ED4_colStat.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[10054]183ED4_colStat.o: $(ARBHOME)/INCLUDE/smartptr.h
184ED4_colStat.o: $(ARBHOME)/INCLUDE/st_window.hxx
185ED4_colStat.o: $(ARBHOME)/INCLUDE/static_assert.h
186ED4_colStat.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]187ED4_colStat.o: $(ARBHOME)/INCLUDE/ttypes.h
[10054]188
[14425]189ED4_consensus.o: ed4_awars.hxx
190ED4_consensus.o: ed4_class.hxx
191ED4_consensus.o: ed4_defs.hxx
192ED4_consensus.o: ed4_search.hxx
193ED4_consensus.o: ed4_seq_colors.hxx
[17944]194ED4_consensus.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[14425]195ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_assert.h
196ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_core.h
197ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_error.h
[17944]198ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_mem.h
199ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_strarray.h
200ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_string.h
[14425]201ED4_consensus.o: $(ARBHOME)/INCLUDE/arbdb_base.h
202ED4_consensus.o: $(ARBHOME)/INCLUDE/arbtools.h
203ED4_consensus.o: $(ARBHOME)/INCLUDE/attributes.h
204ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
205ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_base.hxx
206ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
207ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_device.hxx
208ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]209ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[14425]210ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
211ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_position.hxx
212ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_root.hxx
213ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_window.hxx
214ED4_consensus.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
215ED4_consensus.o: $(ARBHOME)/INCLUDE/cb.h
216ED4_consensus.o: $(ARBHOME)/INCLUDE/cb_base.h
217ED4_consensus.o: $(ARBHOME)/INCLUDE/cbtypes.h
218ED4_consensus.o: $(ARBHOME)/INCLUDE/chartable.h
219ED4_consensus.o: $(ARBHOME)/INCLUDE/consensus.h
220ED4_consensus.o: $(ARBHOME)/INCLUDE/cxxforward.h
221ED4_consensus.o: $(ARBHOME)/INCLUDE/downcast.h
222ED4_consensus.o: $(ARBHOME)/INCLUDE/dupstr.h
223ED4_consensus.o: $(ARBHOME)/INCLUDE/gccver.h
224ED4_consensus.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]225ED4_consensus.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[14425]226ED4_consensus.o: $(ARBHOME)/INCLUDE/smartptr.h
227ED4_consensus.o: $(ARBHOME)/INCLUDE/static_assert.h
228ED4_consensus.o: $(ARBHOME)/INCLUDE/test_global.h
229ED4_consensus.o: $(ARBHOME)/INCLUDE/ttypes.h
230
[15223]231ED4_container.o: ed4_class.hxx
232ED4_container.o: ed4_defs.hxx
233ED4_container.o: ed4_search.hxx
[17944]234ED4_container.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[15223]235ED4_container.o: $(ARBHOME)/INCLUDE/ad_prot.h
236ED4_container.o: $(ARBHOME)/INCLUDE/arb_assert.h
237ED4_container.o: $(ARBHOME)/INCLUDE/arb_core.h
238ED4_container.o: $(ARBHOME)/INCLUDE/arb_error.h
239ED4_container.o: $(ARBHOME)/INCLUDE/arb_mem.h
240ED4_container.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]241ED4_container.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[15223]242ED4_container.o: $(ARBHOME)/INCLUDE/arb_string.h
243ED4_container.o: $(ARBHOME)/INCLUDE/arbdb.h
244ED4_container.o: $(ARBHOME)/INCLUDE/arbdb_base.h
245ED4_container.o: $(ARBHOME)/INCLUDE/arbtools.h
246ED4_container.o: $(ARBHOME)/INCLUDE/attributes.h
247ED4_container.o: $(ARBHOME)/INCLUDE/aw_base.hxx
248ED4_container.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
249ED4_container.o: $(ARBHOME)/INCLUDE/aw_device.hxx
250ED4_container.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]251ED4_container.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[15223]252ED4_container.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
253ED4_container.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
254ED4_container.o: $(ARBHOME)/INCLUDE/aw_position.hxx
255ED4_container.o: $(ARBHOME)/INCLUDE/aw_question.hxx
256ED4_container.o: $(ARBHOME)/INCLUDE/aw_window.hxx
257ED4_container.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
258ED4_container.o: $(ARBHOME)/INCLUDE/cb.h
259ED4_container.o: $(ARBHOME)/INCLUDE/cb_base.h
260ED4_container.o: $(ARBHOME)/INCLUDE/cbtypes.h
261ED4_container.o: $(ARBHOME)/INCLUDE/chartable.h
262ED4_container.o: $(ARBHOME)/INCLUDE/cxxforward.h
263ED4_container.o: $(ARBHOME)/INCLUDE/downcast.h
264ED4_container.o: $(ARBHOME)/INCLUDE/dupstr.h
265ED4_container.o: $(ARBHOME)/INCLUDE/gccver.h
266ED4_container.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]267ED4_container.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[15223]268ED4_container.o: $(ARBHOME)/INCLUDE/smartptr.h
269ED4_container.o: $(ARBHOME)/INCLUDE/static_assert.h
270ED4_container.o: $(ARBHOME)/INCLUDE/test_global.h
271ED4_container.o: $(ARBHOME)/INCLUDE/ttypes.h
272
[2338]273ED4_cursor.o: ed4_awars.hxx
274ED4_cursor.o: ed4_class.hxx
275ED4_cursor.o: ed4_defs.hxx
276ED4_cursor.o: ed4_edit_string.hxx
[4855]277ED4_cursor.o: ed4_extern.hxx
[4303]278ED4_cursor.o: ed4_ProteinViewer.hxx
[2338]279ED4_cursor.o: ed4_search.hxx
[14425]280ED4_cursor.o: ed4_seq_colors.hxx
[2338]281ED4_cursor.o: ed4_tools.hxx
[17944]282ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]283ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_prot.h
284ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
285ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]286ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_core.h
[7272]287ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_defs.h
[6277]288ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]289ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]290ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]291ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17944]292ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7314]293ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]294ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]295ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]296ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]297ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]298ED4_cursor.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]299ED4_cursor.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]300ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]301ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]302ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]303ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]304ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
305ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]306ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]307ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]308ED4_cursor.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[2338]309ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]310ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]311ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]312ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_root.hxx
313ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]314ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[2338]315ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]316ED4_cursor.o: $(ARBHOME)/INCLUDE/cb.h
[11034]317ED4_cursor.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]318ED4_cursor.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]319ED4_cursor.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]320ED4_cursor.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]321ED4_cursor.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]322ED4_cursor.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]323ED4_cursor.o: $(ARBHOME)/INCLUDE/gccver.h
[14425]324ED4_cursor.o: $(ARBHOME)/INCLUDE/iupac.h
[8614]325ED4_cursor.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]326ED4_cursor.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]327ED4_cursor.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]328ED4_cursor.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]329ED4_cursor.o: $(ARBHOME)/INCLUDE/test_global.h
[7314]330ED4_cursor.o: $(ARBHOME)/INCLUDE/test_helpers.h
[7272]331ED4_cursor.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]332ED4_cursor.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]333
[5712]334ED4_dots.o: ed4_class.hxx
335ED4_dots.o: ed4_defs.hxx
336ED4_dots.o: ed4_dots.hxx
337ED4_dots.o: ed4_search.hxx
[17944]338ED4_dots.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[5712]339ED4_dots.o: $(ARBHOME)/INCLUDE/ad_prot.h
340ED4_dots.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
341ED4_dots.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]342ED4_dots.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]343ED4_dots.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]344ED4_dots.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]345ED4_dots.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17724]346ED4_dots.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]347ED4_dots.o: $(ARBHOME)/INCLUDE/arb_string.h
[5712]348ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb.h
349ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb_base.h
350ED4_dots.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]351ED4_dots.o: $(ARBHOME)/INCLUDE/arbtools.h
[5712]352ED4_dots.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]353ED4_dots.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
354ED4_dots.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[5712]355ED4_dots.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
356ED4_dots.o: $(ARBHOME)/INCLUDE/aw_device.hxx
357ED4_dots.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]358ED4_dots.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[5712]359ED4_dots.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]360ED4_dots.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[5712]361ED4_dots.o: $(ARBHOME)/INCLUDE/aw_position.hxx
362ED4_dots.o: $(ARBHOME)/INCLUDE/aw_root.hxx
363ED4_dots.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[13732]364ED4_dots.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[8696]365ED4_dots.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[7272]366ED4_dots.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]367ED4_dots.o: $(ARBHOME)/INCLUDE/cb.h
[11034]368ED4_dots.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]369ED4_dots.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]370ED4_dots.o: $(ARBHOME)/INCLUDE/chartable.h
[17724]371ED4_dots.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[9521]372ED4_dots.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]373ED4_dots.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]374ED4_dots.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]375ED4_dots.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]376ED4_dots.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]377ED4_dots.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]378ED4_dots.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]379ED4_dots.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]380ED4_dots.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]381ED4_dots.o: $(ARBHOME)/INCLUDE/ttypes.h
[5712]382
[2338]383ED4_dump.o: ed4_class.hxx
384ED4_dump.o: ed4_defs.hxx
385ED4_dump.o: ed4_search.hxx
[17944]386ED4_dump.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]387ED4_dump.o: $(ARBHOME)/INCLUDE/ad_prot.h
388ED4_dump.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]389ED4_dump.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]390ED4_dump.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]391ED4_dump.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]392ED4_dump.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]393ED4_dump.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]394ED4_dump.o: $(ARBHOME)/INCLUDE/arb_string.h
[1354]395ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]396ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6209]397ED4_dump.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]398ED4_dump.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]399ED4_dump.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]400ED4_dump.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
401ED4_dump.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]402ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]403ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]404ED4_dump.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[4855]405ED4_dump.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[1354]406ED4_dump.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]407ED4_dump.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[10212]408ED4_dump.o: $(ARBHOME)/INCLUDE/cb.h
[11034]409ED4_dump.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]410ED4_dump.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]411ED4_dump.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]412ED4_dump.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]413ED4_dump.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]414ED4_dump.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]415ED4_dump.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]416ED4_dump.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]417ED4_dump.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]418ED4_dump.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]419ED4_dump.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]420ED4_dump.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]421ED4_dump.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]422
[2338]423ED4_edit_string.o: ed4_awars.hxx
424ED4_edit_string.o: ed4_class.hxx
425ED4_edit_string.o: ed4_defs.hxx
426ED4_edit_string.o: ed4_edit_string.hxx
427ED4_edit_string.o: ed4_search.hxx
[14425]428ED4_edit_string.o: ed4_seq_colors.hxx
[17944]429ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]430ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_prot.h
431ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
432ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]433ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]434ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]435ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]436ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]437ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]438ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]439ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]440ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]441ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]442ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]443ED4_edit_string.o: $(ARBHOME)/INCLUDE/attributes.h
[7887]444ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
[6868]445ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
446ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]447ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
448ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]449ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]450ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]451ED4_edit_string.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[2338]452ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]453ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]454ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[8355]455ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[2338]456ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_root.hxx
457ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_window.hxx
458ED4_edit_string.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
[7272]459ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[2338]460ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]461ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb.h
[11034]462ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]463ED4_edit_string.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]464ED4_edit_string.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]465ED4_edit_string.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]466ED4_edit_string.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]467ED4_edit_string.o: $(ARBHOME)/INCLUDE/dupstr.h
[5885]468ED4_edit_string.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
[9516]469ED4_edit_string.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]470ED4_edit_string.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]471ED4_edit_string.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]472ED4_edit_string.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]473ED4_edit_string.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]474ED4_edit_string.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]475ED4_edit_string.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]476
[15288]477ED4_flags.o: ed4_class.hxx
478ED4_flags.o: ed4_defs.hxx
479ED4_flags.o: ed4_flags.hxx
480ED4_flags.o: ed4_search.hxx
[17944]481ED4_flags.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[15288]482ED4_flags.o: $(ARBHOME)/INCLUDE/ad_prot.h
483ED4_flags.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
484ED4_flags.o: $(ARBHOME)/INCLUDE/arb_assert.h
485ED4_flags.o: $(ARBHOME)/INCLUDE/arb_core.h
486ED4_flags.o: $(ARBHOME)/INCLUDE/arb_error.h
487ED4_flags.o: $(ARBHOME)/INCLUDE/arb_mem.h
488ED4_flags.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17724]489ED4_flags.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[15288]490ED4_flags.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
491ED4_flags.o: $(ARBHOME)/INCLUDE/arb_string.h
492ED4_flags.o: $(ARBHOME)/INCLUDE/arbdb.h
493ED4_flags.o: $(ARBHOME)/INCLUDE/arbdb_base.h
494ED4_flags.o: $(ARBHOME)/INCLUDE/arbdbt.h
495ED4_flags.o: $(ARBHOME)/INCLUDE/arbtools.h
496ED4_flags.o: $(ARBHOME)/INCLUDE/attributes.h
497ED4_flags.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
498ED4_flags.o: $(ARBHOME)/INCLUDE/aw_base.hxx
499ED4_flags.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
500ED4_flags.o: $(ARBHOME)/INCLUDE/aw_device.hxx
501ED4_flags.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
502ED4_flags.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
503ED4_flags.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
504ED4_flags.o: $(ARBHOME)/INCLUDE/aw_position.hxx
505ED4_flags.o: $(ARBHOME)/INCLUDE/aw_root.hxx
506ED4_flags.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
507ED4_flags.o: $(ARBHOME)/INCLUDE/aw_select.hxx
508ED4_flags.o: $(ARBHOME)/INCLUDE/aw_window.hxx
509ED4_flags.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
510ED4_flags.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
511ED4_flags.o: $(ARBHOME)/INCLUDE/cb.h
512ED4_flags.o: $(ARBHOME)/INCLUDE/cb_base.h
513ED4_flags.o: $(ARBHOME)/INCLUDE/cbtypes.h
514ED4_flags.o: $(ARBHOME)/INCLUDE/chartable.h
[17724]515ED4_flags.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[15288]516ED4_flags.o: $(ARBHOME)/INCLUDE/cxxforward.h
517ED4_flags.o: $(ARBHOME)/INCLUDE/downcast.h
518ED4_flags.o: $(ARBHOME)/INCLUDE/dupstr.h
519ED4_flags.o: $(ARBHOME)/INCLUDE/gccver.h
520ED4_flags.o: $(ARBHOME)/INCLUDE/item_sel_list.h
521ED4_flags.o: $(ARBHOME)/INCLUDE/items.h
522ED4_flags.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]523ED4_flags.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[15288]524ED4_flags.o: $(ARBHOME)/INCLUDE/smartptr.h
525ED4_flags.o: $(ARBHOME)/INCLUDE/static_assert.h
526ED4_flags.o: $(ARBHOME)/INCLUDE/test_global.h
527ED4_flags.o: $(ARBHOME)/INCLUDE/ttypes.h
528
[2338]529ED4_main.o: ed4_awars.hxx
530ED4_main.o: ed4_class.hxx
531ED4_main.o: ed4_defs.hxx
[5712]532ED4_main.o: ed4_dots.hxx
[2338]533ED4_main.o: ed4_edit_string.hxx
[4855]534ED4_main.o: ed4_extern.hxx
[6318]535ED4_main.o: ed4_naligner.hxx
[2338]536ED4_main.o: ed4_nds.hxx
[5230]537ED4_main.o: ed4_protein_2nd_structure.hxx
[4167]538ED4_main.o: ed4_ProteinViewer.hxx
[2338]539ED4_main.o: ed4_search.hxx
[14425]540ED4_main.o: ed4_seq_colors.hxx
[2338]541ED4_main.o: ed4_visualizeSAI.hxx
[5540]542ED4_main.o: graph_aligner_gui.hxx
[17944]543ED4_main.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[3876]544ED4_main.o: $(ARBHOME)/INCLUDE/ad_config.h
[2338]545ED4_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
546ED4_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[6280]547ED4_main.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
[2338]548ED4_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]549ED4_main.o: $(ARBHOME)/INCLUDE/arb_core.h
[7272]550ED4_main.o: $(ARBHOME)/INCLUDE/arb_defs.h
[6277]551ED4_main.o: $(ARBHOME)/INCLUDE/arb_error.h
[14786]552ED4_main.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]553ED4_main.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]554ED4_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]555ED4_main.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]556ED4_main.o: $(ARBHOME)/INCLUDE/arb_string.h
[1354]557ED4_main.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]558ED4_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[1354]559ED4_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]560ED4_main.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]561ED4_main.o: $(ARBHOME)/INCLUDE/attributes.h
[7887]562ED4_main.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
[6868]563ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]564ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]565ED4_main.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]566ED4_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]567ED4_main.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
568ED4_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]569ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]570ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]571ED4_main.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[3554]572ED4_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]573ED4_main.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]574ED4_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]575ED4_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[10083]576ED4_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[1354]577ED4_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
578ED4_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[2338]579ED4_main.o: $(ARBHOME)/INCLUDE/awt.hxx
580ED4_main.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
[7272]581ED4_main.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[1354]582ED4_main.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]583ED4_main.o: $(ARBHOME)/INCLUDE/cb.h
[11034]584ED4_main.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]585ED4_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]586ED4_main.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]587ED4_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]588ED4_main.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]589ED4_main.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]590ED4_main.o: $(ARBHOME)/INCLUDE/gccver.h
[2338]591ED4_main.o: $(ARBHOME)/INCLUDE/gde.hxx
[10083]592ED4_main.o: $(ARBHOME)/INCLUDE/macros.hxx
[8614]593ED4_main.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]594ED4_main.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]595ED4_main.o: $(ARBHOME)/INCLUDE/smartptr.h
[1354]596ED4_main.o: $(ARBHOME)/INCLUDE/st_window.hxx
[9527]597ED4_main.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]598ED4_main.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]599ED4_main.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]600
[2338]601ED4_manager.o: ed4_awars.hxx
602ED4_manager.o: ed4_class.hxx
603ED4_manager.o: ed4_defs.hxx
604ED4_manager.o: ed4_edit_string.hxx
[8626]605ED4_manager.o: ed4_list.hxx
[5230]606ED4_manager.o: ed4_protein_2nd_structure.hxx
[4303]607ED4_manager.o: ed4_ProteinViewer.hxx
[2338]608ED4_manager.o: ed4_search.hxx
[14425]609ED4_manager.o: ed4_seq_colors.hxx
[2338]610ED4_manager.o: ed4_tools.hxx
[17944]611ED4_manager.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]612ED4_manager.o: $(ARBHOME)/INCLUDE/ad_prot.h
613ED4_manager.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
614ED4_manager.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]615ED4_manager.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]616ED4_manager.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]617ED4_manager.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]618ED4_manager.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]619ED4_manager.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]620ED4_manager.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]621ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]622ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]623ED4_manager.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]624ED4_manager.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]625ED4_manager.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]626ED4_manager.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
627ED4_manager.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]628ED4_manager.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
629ED4_manager.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]630ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]631ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[2338]632ED4_manager.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]633ED4_manager.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]634ED4_manager.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]635ED4_manager.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
636ED4_manager.o: $(ARBHOME)/INCLUDE/aw_root.hxx
637ED4_manager.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]638ED4_manager.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]639ED4_manager.o: $(ARBHOME)/INCLUDE/cb.h
[11034]640ED4_manager.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]641ED4_manager.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]642ED4_manager.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]643ED4_manager.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]644ED4_manager.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]645ED4_manager.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]646ED4_manager.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]647ED4_manager.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]648ED4_manager.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]649ED4_manager.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]650ED4_manager.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]651ED4_manager.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]652ED4_manager.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]653
[6422]654ED4_naligner.o: ed4_naligner.hxx
[6318]655ED4_naligner.o: $(ARBHOME)/INCLUDE/ad_prot.h
656ED4_naligner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
657ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]658ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_core.h
[6318]659ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]660ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]661ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7314]662ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]663ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_string.h
[6318]664ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdb.h
665ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
666ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdbt.h
667ED4_naligner.o: $(ARBHOME)/INCLUDE/arbtools.h
668ED4_naligner.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]669ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]670ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[6318]671ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]672ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[6318]673ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
674ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_root.hxx
675ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_window.hxx
676ED4_naligner.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[6868]677ED4_naligner.o: $(ARBHOME)/INCLUDE/cb.h
[11034]678ED4_naligner.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]679ED4_naligner.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]680ED4_naligner.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]681ED4_naligner.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]682ED4_naligner.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]683ED4_naligner.o: $(ARBHOME)/INCLUDE/gccver.h
[6318]684ED4_naligner.o: $(ARBHOME)/INCLUDE/smartptr.h
[10212]685ED4_naligner.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]686ED4_naligner.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]687ED4_naligner.o: $(ARBHOME)/INCLUDE/ttypes.h
[6318]688
[2338]689ED4_nds.o: ed4_awars.hxx
690ED4_nds.o: ed4_class.hxx
691ED4_nds.o: ed4_defs.hxx
692ED4_nds.o: ed4_search.hxx
[17944]693ED4_nds.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]694ED4_nds.o: $(ARBHOME)/INCLUDE/ad_prot.h
695ED4_nds.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
696ED4_nds.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]697ED4_nds.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]698ED4_nds.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]699ED4_nds.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]700ED4_nds.o: $(ARBHOME)/INCLUDE/arb_msg.h
[16425]701ED4_nds.o: $(ARBHOME)/INCLUDE/arb_str.h
[17944]702ED4_nds.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]703ED4_nds.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]704ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]705ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]706ED4_nds.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]707ED4_nds.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]708ED4_nds.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]709ED4_nds.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
710ED4_nds.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]711ED4_nds.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
712ED4_nds.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]713ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]714ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]715ED4_nds.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]716ED4_nds.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]717ED4_nds.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]718ED4_nds.o: $(ARBHOME)/INCLUDE/aw_root.hxx
719ED4_nds.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]720ED4_nds.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]721ED4_nds.o: $(ARBHOME)/INCLUDE/cb.h
[11034]722ED4_nds.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]723ED4_nds.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]724ED4_nds.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]725ED4_nds.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]726ED4_nds.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]727ED4_nds.o: $(ARBHOME)/INCLUDE/dupstr.h
[16374]728ED4_nds.o: $(ARBHOME)/INCLUDE/gb_aci.h
[9516]729ED4_nds.o: $(ARBHOME)/INCLUDE/gccver.h
[10494]730ED4_nds.o: $(ARBHOME)/INCLUDE/nds.h
[8614]731ED4_nds.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]732ED4_nds.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]733ED4_nds.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]734ED4_nds.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]735ED4_nds.o: $(ARBHOME)/INCLUDE/test_global.h
[18704]736ED4_nds.o: $(ARBHOME)/INCLUDE/TreeLabeler.h
[10212]737ED4_nds.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]738
[2338]739ED4_no_class.o: ed4_awars.hxx
740ED4_no_class.o: ed4_class.hxx
741ED4_no_class.o: ed4_defs.hxx
742ED4_no_class.o: ed4_edit_string.hxx
[4855]743ED4_no_class.o: ed4_extern.hxx
[15288]744ED4_no_class.o: ed4_flags.hxx
[8626]745ED4_no_class.o: ed4_list.hxx
[2338]746ED4_no_class.o: ed4_nds.hxx
747ED4_no_class.o: ed4_search.hxx
[14425]748ED4_no_class.o: ed4_seq_colors.hxx
[17944]749ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[3876]750ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_config.h
[2338]751ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_prot.h
752ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
753ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]754ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_core.h
[7272]755ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_defs.h
[6277]756ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_error.h
[14786]757ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]758ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]759ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]760ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17724]761ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]762ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]763ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]764ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]765ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]766ED4_no_class.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]767ED4_no_class.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]768ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]769ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]770ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]771ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]772ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
773ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]774ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]775ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]776ED4_no_class.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[2338]777ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]778ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]779ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[3876]780ED4_no_class.o: $(ARBHOME)/INCLUDE/AW_rename.hxx
[2338]781ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_root.hxx
[8722]782ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
[6421]783ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_select.hxx
[2338]784ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_window.hxx
785ED4_no_class.o: $(ARBHOME)/INCLUDE/awt.hxx
[13710]786ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[14123]787ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_misc.hxx
[3902]788ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[7272]789ED4_no_class.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[2338]790ED4_no_class.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]791ED4_no_class.o: $(ARBHOME)/INCLUDE/cb.h
[11034]792ED4_no_class.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]793ED4_no_class.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]794ED4_no_class.o: $(ARBHOME)/INCLUDE/chartable.h
[17724]795ED4_no_class.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[13710]796ED4_no_class.o: $(ARBHOME)/INCLUDE/consensus_config.h
[9521]797ED4_no_class.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]798ED4_no_class.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]799ED4_no_class.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]800ED4_no_class.o: $(ARBHOME)/INCLUDE/gccver.h
[7801]801ED4_no_class.o: $(ARBHOME)/INCLUDE/item_sel_list.h
802ED4_no_class.o: $(ARBHOME)/INCLUDE/items.h
[14425]803ED4_no_class.o: $(ARBHOME)/INCLUDE/iupac.h
[10083]804ED4_no_class.o: $(ARBHOME)/INCLUDE/macros.hxx
[8614]805ED4_no_class.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]806ED4_no_class.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]807ED4_no_class.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]808ED4_no_class.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]809ED4_no_class.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]810ED4_no_class.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]811
[8609]812ED4_objspec.o: ed4_class.hxx
813ED4_objspec.o: ed4_defs.hxx
814ED4_objspec.o: ed4_search.hxx
[17944]815ED4_objspec.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[8609]816ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_assert.h
817ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_core.h
818ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_error.h
[17944]819ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_mem.h
820ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_strarray.h
821ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_string.h
[8609]822ED4_objspec.o: $(ARBHOME)/INCLUDE/arbdb_base.h
823ED4_objspec.o: $(ARBHOME)/INCLUDE/arbtools.h
824ED4_objspec.o: $(ARBHOME)/INCLUDE/attributes.h
825ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_base.hxx
826ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
827ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_device.hxx
828ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]829ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[8609]830ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
831ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_position.hxx
832ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_window.hxx
833ED4_objspec.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[10212]834ED4_objspec.o: $(ARBHOME)/INCLUDE/cb.h
[11034]835ED4_objspec.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]836ED4_objspec.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]837ED4_objspec.o: $(ARBHOME)/INCLUDE/chartable.h
[9516]838ED4_objspec.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8609]839ED4_objspec.o: $(ARBHOME)/INCLUDE/downcast.h
840ED4_objspec.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]841ED4_objspec.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]842ED4_objspec.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]843ED4_objspec.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[8609]844ED4_objspec.o: $(ARBHOME)/INCLUDE/smartptr.h
845ED4_objspec.o: $(ARBHOME)/INCLUDE/static_assert.h
846ED4_objspec.o: $(ARBHOME)/INCLUDE/test_global.h
847ED4_objspec.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]848ED4_objspec.o: $(ARBHOME)/INCLUDE/ttypes.h
[8609]849
[6865]850ED4_plugins.o: ed4_class.hxx
851ED4_plugins.o: ed4_defs.hxx
852ED4_plugins.o: ed4_plugins.hxx
853ED4_plugins.o: ed4_search.hxx
854ED4_plugins.o: ed4_visualizeSAI.hxx
[17944]855ED4_plugins.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[6865]856ED4_plugins.o: $(ARBHOME)/INCLUDE/ad_prot.h
857ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_assert.h
858ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_core.h
859ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_defs.h
860ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]861ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]862ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]863ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]864ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_string.h
[6865]865ED4_plugins.o: $(ARBHOME)/INCLUDE/arbdb.h
866ED4_plugins.o: $(ARBHOME)/INCLUDE/arbdb_base.h
867ED4_plugins.o: $(ARBHOME)/INCLUDE/arbtools.h
868ED4_plugins.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]869ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[6865]870ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
871ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_device.hxx
872ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]873ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[6865]874ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]875ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[6865]876ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_position.hxx
877ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]878ED4_plugins.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[10212]879ED4_plugins.o: $(ARBHOME)/INCLUDE/cb.h
[11034]880ED4_plugins.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]881ED4_plugins.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]882ED4_plugins.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]883ED4_plugins.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]884ED4_plugins.o: $(ARBHOME)/INCLUDE/downcast.h
[6865]885ED4_plugins.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]886ED4_plugins.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]887ED4_plugins.o: $(ARBHOME)/INCLUDE/pos_range.h
[6865]888ED4_plugins.o: $(ARBHOME)/INCLUDE/rna3d_extern.hxx
889ED4_plugins.o: $(ARBHOME)/INCLUDE/secedit_extern.hxx
[16961]890ED4_plugins.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6865]891ED4_plugins.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]892ED4_plugins.o: $(ARBHOME)/INCLUDE/static_assert.h
[6865]893ED4_plugins.o: $(ARBHOME)/INCLUDE/test_global.h
894ED4_plugins.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]895ED4_plugins.o: $(ARBHOME)/INCLUDE/ttypes.h
[6865]896
[5071]897ED4_protein_2nd_structure.o: ed4_awars.hxx
898ED4_protein_2nd_structure.o: ed4_class.hxx
899ED4_protein_2nd_structure.o: ed4_defs.hxx
[2338]900ED4_protein_2nd_structure.o: ed4_protein_2nd_structure.hxx
[5071]901ED4_protein_2nd_structure.o: ed4_search.hxx
[17944]902ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]903ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_prot.h
[5230]904ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]905ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]906ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]907ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]908ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]909ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17724]910ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]911ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]912ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]913ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[5230]914ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]915ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]916ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]917ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
918ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[5071]919ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
920ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_device.hxx
921ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]922ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[5071]923ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]924ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[5071]925ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_position.hxx
926ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_root.hxx
927ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[13736]928ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[7272]929ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]930ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cb.h
[11034]931ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]932ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]933ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/chartable.h
[17724]934ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[9521]935ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]936ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]937ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]938ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]939ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]940ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]941ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]942ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]943ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]944ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]945
[4167]946ED4_ProteinViewer.o: ed4_class.hxx
947ED4_ProteinViewer.o: ed4_defs.hxx
[17593]948ED4_ProteinViewer.o: ed4_edit_string.hxx
[4167]949ED4_ProteinViewer.o: ed4_ProteinViewer.hxx
950ED4_ProteinViewer.o: ed4_search.hxx
[14425]951ED4_ProteinViewer.o: ed4_seq_colors.hxx
[17944]952ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[4167]953ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_prot.h
954ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[6280]955ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/AP_codon_table.hxx
956ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
[4167]957ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]958ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]959ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]960ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]961ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]962ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]963ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_string.h
[4167]964ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]965ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[4167]966ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdbt.h
[4303]967ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]968ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]969ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]970ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[4167]971ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]972ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[4167]973ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
974ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_device.hxx
975ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]976ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[4167]977ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]978ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]979ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[4167]980ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[4303]981ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[4167]982ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_root.hxx
983ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]984ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]985ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cb.h
[11034]986ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]987ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]988ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]989ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]990ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]991ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]992ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]993ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]994ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]995ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]996ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]997ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/test_global.h
[6280]998ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/Translate.hxx
[10212]999ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ttypes.h
[4167]1000
[8619]1001ED4_root.o: ../WINDOW/aw_status.hxx
[2338]1002ED4_root.o: ed4_awars.hxx
1003ED4_root.o: ed4_block.hxx
1004ED4_root.o: ed4_class.hxx
[10054]1005ED4_root.o: ed4_colStat.hxx
[2338]1006ED4_root.o: ed4_defs.hxx
[5712]1007ED4_root.o: ed4_dots.hxx
[4855]1008ED4_root.o: ed4_extern.hxx
[15288]1009ED4_root.o: ed4_flags.hxx
[8626]1010ED4_root.o: ed4_list.hxx
[6318]1011ED4_root.o: ed4_naligner.hxx
[2338]1012ED4_root.o: ed4_nds.hxx
[6865]1013ED4_root.o: ed4_plugins.hxx
[5230]1014ED4_root.o: ed4_protein_2nd_structure.hxx
[4167]1015ED4_root.o: ed4_ProteinViewer.hxx
[2338]1016ED4_root.o: ed4_search.hxx
[14425]1017ED4_root.o: ed4_seq_colors.hxx
[2338]1018ED4_root.o: ed4_tools.hxx
1019ED4_root.o: ed4_visualizeSAI.hxx
[5540]1020ED4_root.o: graph_aligner_gui.hxx
[11023]1021ED4_root.o: $(ARBHOME)/INCLUDE/ad_cb.h
1022ED4_root.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
[17944]1023ED4_root.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1024ED4_root.o: $(ARBHOME)/INCLUDE/ad_prot.h
1025ED4_root.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1026ED4_root.o: $(ARBHOME)/INCLUDE/arb_assert.h
[4409]1027ED4_root.o: $(ARBHOME)/INCLUDE/arb_build.h
[6814]1028ED4_root.o: $(ARBHOME)/INCLUDE/arb_core.h
[15288]1029ED4_root.o: $(ARBHOME)/INCLUDE/arb_defs.h
[6277]1030ED4_root.o: $(ARBHOME)/INCLUDE/arb_error.h
[8103]1031ED4_root.o: $(ARBHOME)/INCLUDE/arb_file.h
[15176]1032ED4_root.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1033ED4_root.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]1034ED4_root.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17944]1035ED4_root.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]1036ED4_root.o: $(ARBHOME)/INCLUDE/arb_string.h
[4409]1037ED4_root.o: $(ARBHOME)/INCLUDE/arb_version.h
[1617]1038ED4_root.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1039ED4_root.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[1354]1040ED4_root.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1041ED4_root.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1042ED4_root.o: $(ARBHOME)/INCLUDE/attributes.h
[7887]1043ED4_root.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
[6868]1044ED4_root.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]1045ED4_root.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[1354]1046ED4_root.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]1047ED4_root.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1048ED4_root.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
[1354]1049ED4_root.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1050ED4_root.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1051ED4_root.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]1052ED4_root.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[3554]1053ED4_root.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1054ED4_root.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1055ED4_root.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[1354]1056ED4_root.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[8355]1057ED4_root.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[2338]1058ED4_root.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1059ED4_root.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[1354]1060ED4_root.o: $(ARBHOME)/INCLUDE/awt.hxx
[2338]1061ED4_root.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
[7272]1062ED4_root.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[1354]1063ED4_root.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]1064ED4_root.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1065ED4_root.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1066ED4_root.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1067ED4_root.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1068ED4_root.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1069ED4_root.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1070ED4_root.o: $(ARBHOME)/INCLUDE/dupstr.h
[5885]1071ED4_root.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
[9516]1072ED4_root.o: $(ARBHOME)/INCLUDE/gccver.h
[2338]1073ED4_root.o: $(ARBHOME)/INCLUDE/gde.hxx
[10083]1074ED4_root.o: $(ARBHOME)/INCLUDE/macros.hxx
[8614]1075ED4_root.o: $(ARBHOME)/INCLUDE/pos_range.h
[14426]1076ED4_root.o: $(ARBHOME)/INCLUDE/rootAsWin.h
[16961]1077ED4_root.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1078ED4_root.o: $(ARBHOME)/INCLUDE/smartptr.h
[13751]1079ED4_root.o: $(ARBHOME)/INCLUDE/st_window.hxx
[9527]1080ED4_root.o: $(ARBHOME)/INCLUDE/static_assert.h
[5540]1081ED4_root.o: $(ARBHOME)/INCLUDE/svn_revision.h
[6817]1082ED4_root.o: $(ARBHOME)/INCLUDE/test_global.h
[8618]1083ED4_root.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]1084ED4_root.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1085
[2338]1086ED4_search.o: ed4_awars.hxx
1087ED4_search.o: ed4_class.hxx
1088ED4_search.o: ed4_defs.hxx
[17534]1089ED4_search.o: ed4_edit_string.hxx
[4855]1090ED4_search.o: ed4_extern.hxx
[2338]1091ED4_search.o: ed4_search.hxx
1092ED4_search.o: ed4_tools.hxx
[17944]1093ED4_search.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1094ED4_search.o: $(ARBHOME)/INCLUDE/ad_prot.h
1095ED4_search.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1096ED4_search.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1097ED4_search.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1098ED4_search.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1099ED4_search.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1100ED4_search.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17724]1101ED4_search.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]1102ED4_search.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]1103ED4_search.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1104ED4_search.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]1105ED4_search.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1106ED4_search.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1107ED4_search.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1108ED4_search.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]1109ED4_search.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]1110ED4_search.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]1111ED4_search.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1112ED4_search.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1113ED4_search.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[6422]1114ED4_search.o: $(ARBHOME)/INCLUDE/aw_file.hxx
[3554]1115ED4_search.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1116ED4_search.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[2338]1117ED4_search.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1118ED4_search.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1119ED4_search.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[8355]1120ED4_search.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[2338]1121ED4_search.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1122ED4_search.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1123ED4_search.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[7272]1124ED4_search.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]1125ED4_search.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1126ED4_search.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1127ED4_search.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1128ED4_search.o: $(ARBHOME)/INCLUDE/chartable.h
[17724]1129ED4_search.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[9521]1130ED4_search.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1131ED4_search.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1132ED4_search.o: $(ARBHOME)/INCLUDE/dupstr.h
[5885]1133ED4_search.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
[9516]1134ED4_search.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1135ED4_search.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1136ED4_search.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1137ED4_search.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]1138ED4_search.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1139ED4_search.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1140ED4_search.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1141
[14425]1142ED4_seq_colors.o: ed4_class.hxx
1143ED4_seq_colors.o: ed4_defs.hxx
[15288]1144ED4_seq_colors.o: ed4_extern.hxx
[14425]1145ED4_seq_colors.o: ed4_search.hxx
1146ED4_seq_colors.o: ed4_seq_colors.hxx
[17944]1147ED4_seq_colors.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[14425]1148ED4_seq_colors.o: $(ARBHOME)/INCLUDE/ad_prot.h
1149ED4_seq_colors.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1150ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_assert.h
1151ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_core.h
1152ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_error.h
[17534]1153ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]1154ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_mem.h
[14425]1155ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]1156ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[14425]1157ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_string.h
1158ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arbdb.h
1159ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1160ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arbdbt.h
1161ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arbtools.h
1162ED4_seq_colors.o: $(ARBHOME)/INCLUDE/attributes.h
1163ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1164ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1165ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1166ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1167ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1168ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1169ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[14425]1170ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1171ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1172ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1173ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1174ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1175ED4_seq_colors.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1176ED4_seq_colors.o: $(ARBHOME)/INCLUDE/cb.h
1177ED4_seq_colors.o: $(ARBHOME)/INCLUDE/cb_base.h
1178ED4_seq_colors.o: $(ARBHOME)/INCLUDE/cbtypes.h
1179ED4_seq_colors.o: $(ARBHOME)/INCLUDE/chartable.h
1180ED4_seq_colors.o: $(ARBHOME)/INCLUDE/cxxforward.h
1181ED4_seq_colors.o: $(ARBHOME)/INCLUDE/downcast.h
1182ED4_seq_colors.o: $(ARBHOME)/INCLUDE/dupstr.h
1183ED4_seq_colors.o: $(ARBHOME)/INCLUDE/gccver.h
1184ED4_seq_colors.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1185ED4_seq_colors.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[14425]1186ED4_seq_colors.o: $(ARBHOME)/INCLUDE/smartptr.h
1187ED4_seq_colors.o: $(ARBHOME)/INCLUDE/static_assert.h
1188ED4_seq_colors.o: $(ARBHOME)/INCLUDE/test_global.h
1189ED4_seq_colors.o: $(ARBHOME)/INCLUDE/ttypes.h
1190
[2338]1191ED4_terminal.o: ed4_awars.hxx
1192ED4_terminal.o: ed4_block.hxx
1193ED4_terminal.o: ed4_class.hxx
1194ED4_terminal.o: ed4_defs.hxx
1195ED4_terminal.o: ed4_edit_string.hxx
[4855]1196ED4_terminal.o: ed4_extern.hxx
[15288]1197ED4_terminal.o: ed4_flags.hxx
[2338]1198ED4_terminal.o: ed4_nds.hxx
[4303]1199ED4_terminal.o: ed4_ProteinViewer.hxx
[2338]1200ED4_terminal.o: ed4_search.hxx
[14425]1201ED4_terminal.o: ed4_seq_colors.hxx
[17944]1202ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1203ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_prot.h
[14641]1204ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]1205ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1206ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1207ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1208ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1209ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]1210ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]1211ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]1212ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1213ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[14641]1214ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1215ED4_terminal.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1216ED4_terminal.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1217ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[14641]1218ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[6868]1219ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1220ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1221ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1222ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1223ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[2338]1224ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1225ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1226ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]1227ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[8355]1228ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[2338]1229ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1230ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]1231ED4_terminal.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]1232ED4_terminal.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1233ED4_terminal.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1234ED4_terminal.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1235ED4_terminal.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1236ED4_terminal.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1237ED4_terminal.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1238ED4_terminal.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1239ED4_terminal.o: $(ARBHOME)/INCLUDE/gccver.h
[15288]1240ED4_terminal.o: $(ARBHOME)/INCLUDE/items.h
[8614]1241ED4_terminal.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1242ED4_terminal.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1243ED4_terminal.o: $(ARBHOME)/INCLUDE/smartptr.h
[2338]1244ED4_terminal.o: $(ARBHOME)/INCLUDE/st_window.hxx
[9527]1245ED4_terminal.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1246ED4_terminal.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1247ED4_terminal.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1248
[2338]1249ED4_text_terminals.o: ed4_awars.hxx
1250ED4_text_terminals.o: ed4_block.hxx
1251ED4_text_terminals.o: ed4_class.hxx
1252ED4_text_terminals.o: ed4_defs.hxx
1253ED4_text_terminals.o: ed4_edit_string.hxx
[4855]1254ED4_text_terminals.o: ed4_extern.hxx
[2338]1255ED4_text_terminals.o: ed4_nds.hxx
1256ED4_text_terminals.o: ed4_protein_2nd_structure.hxx
[4303]1257ED4_text_terminals.o: ed4_ProteinViewer.hxx
[2338]1258ED4_text_terminals.o: ed4_search.hxx
[14425]1259ED4_text_terminals.o: ed4_seq_colors.hxx
[2338]1260ED4_text_terminals.o: ed4_visualizeSAI.hxx
[14943]1261ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1262ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_prot.h
[7272]1263ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]1264ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1265ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1266ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1267ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1268ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_msg.h
[14943]1269ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]1270ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_string.h
[1354]1271ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1272ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[7272]1273ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1274ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1275ED4_text_terminals.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1276ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1277ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1278ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
[1354]1279ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1280ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1281ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3497]1282ED4_text_terminals.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
[1354]1283ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1284ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1285ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]1286ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
1287ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_root.hxx
[1354]1288ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]1289ED4_text_terminals.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[1354]1290ED4_text_terminals.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
[6868]1291ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1292ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1293ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1294ED4_text_terminals.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1295ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1296ED4_text_terminals.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1297ED4_text_terminals.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1298ED4_text_terminals.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1299ED4_text_terminals.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1300ED4_text_terminals.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1301ED4_text_terminals.o: $(ARBHOME)/INCLUDE/smartptr.h
[2338]1302ED4_text_terminals.o: $(ARBHOME)/INCLUDE/st_window.hxx
[9527]1303ED4_text_terminals.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1304ED4_text_terminals.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1305ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1306
[2338]1307ED4_tools.o: ed4_class.hxx
1308ED4_tools.o: ed4_defs.hxx
1309ED4_tools.o: ed4_search.hxx
[17944]1310ED4_tools.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1311ED4_tools.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1312ED4_tools.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1313ED4_tools.o: $(ARBHOME)/INCLUDE/arb_error.h
[17944]1314ED4_tools.o: $(ARBHOME)/INCLUDE/arb_mem.h
1315ED4_tools.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1316ED4_tools.o: $(ARBHOME)/INCLUDE/arb_string.h
[5709]1317ED4_tools.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6209]1318ED4_tools.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1319ED4_tools.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1320ED4_tools.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1321ED4_tools.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1322ED4_tools.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1323ED4_tools.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1324ED4_tools.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]1325ED4_tools.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[4855]1326ED4_tools.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[1354]1327ED4_tools.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]1328ED4_tools.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]1329ED4_tools.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1330ED4_tools.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1331ED4_tools.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1332ED4_tools.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1333ED4_tools.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1334ED4_tools.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1335ED4_tools.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1336ED4_tools.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1337ED4_tools.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1338ED4_tools.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1339ED4_tools.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]1340ED4_tools.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1341ED4_tools.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1342ED4_tools.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1343
[2338]1344ED4_visualizeSAI.o: ed4_class.hxx
1345ED4_visualizeSAI.o: ed4_defs.hxx
[4855]1346ED4_visualizeSAI.o: ed4_extern.hxx
[2338]1347ED4_visualizeSAI.o: ed4_search.hxx
[11023]1348ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_cb.h
1349ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
[17944]1350ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[2338]1351ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_prot.h
1352ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1353ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1354ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1355ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1356ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1357ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]1358ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7314]1359ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]1360ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_string.h
[1354]1361ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1362ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[1354]1363ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1364ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1365ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1366ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]1367ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[2338]1368ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]1369ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1370ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1371ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[11093]1372ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
[3554]1373ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1374ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]1375ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1376ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1377ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[4303]1378ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
[8355]1379ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[1354]1380ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_root.hxx
[8723]1381ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
1382ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_select.hxx
[1354]1383ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1384ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
[16508]1385ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_prompt.hxx
[3902]1386ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[7272]1387ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]1388ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1389ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1390ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1391ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1392ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1393ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1394ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1395ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1396ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1397ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1398ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]1399ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1400ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1401ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]1402
[2338]1403ED4_window.o: ed4_class.hxx
1404ED4_window.o: ed4_defs.hxx
[4855]1405ED4_window.o: ed4_extern.hxx
[2338]1406ED4_window.o: ed4_search.hxx
1407ED4_window.o: ed4_tools.hxx
[17944]1408ED4_window.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[8621]1409ED4_window.o: $(ARBHOME)/INCLUDE/ad_prot.h
[2338]1410ED4_window.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1411ED4_window.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1412ED4_window.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1413ED4_window.o: $(ARBHOME)/INCLUDE/arb_mem.h
[8621]1414ED4_window.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17944]1415ED4_window.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[8621]1416ED4_window.o: $(ARBHOME)/INCLUDE/arb_string.h
1417ED4_window.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1418ED4_window.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6209]1419ED4_window.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1420ED4_window.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1421ED4_window.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1422ED4_window.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1423ED4_window.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1424ED4_window.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1425ED4_window.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1426ED4_window.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]1427ED4_window.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[4855]1428ED4_window.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]1429ED4_window.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1430ED4_window.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]1431ED4_window.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[6868]1432ED4_window.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1433ED4_window.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1434ED4_window.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1435ED4_window.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1436ED4_window.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1437ED4_window.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1438ED4_window.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1439ED4_window.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1440ED4_window.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1441ED4_window.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1442ED4_window.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]1443ED4_window.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1444ED4_window.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1445ED4_window.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]1446
1447EDB_root_bact.o: ed4_class.hxx
1448EDB_root_bact.o: ed4_defs.hxx
[4855]1449EDB_root_bact.o: ed4_extern.hxx
[2338]1450EDB_root_bact.o: ed4_search.hxx
[17944]1451EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[3876]1452EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_config.h
[2338]1453EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_prot.h
1454EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1455EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1456EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1457EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1458EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]1459EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]1460EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17944]1461EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7314]1462EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]1463EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]1464EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1465EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]1466EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1467EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]1468EDB_root_bact.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1469EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[2338]1470EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1471EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_device.hxx
[3554]1472EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
[15254]1473EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
[3554]1474EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1475EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4855]1476EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[2338]1477EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[7272]1478EDB_root_bact.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
[10212]1479EDB_root_bact.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1480EDB_root_bact.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1481EDB_root_bact.o: $(ARBHOME)/INCLUDE/cbtypes.h
[14425]1482EDB_root_bact.o: $(ARBHOME)/INCLUDE/chartable.h
[9521]1483EDB_root_bact.o: $(ARBHOME)/INCLUDE/cxxforward.h
[8607]1484EDB_root_bact.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1485EDB_root_bact.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]1486EDB_root_bact.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1487EDB_root_bact.o: $(ARBHOME)/INCLUDE/pos_range.h
[16961]1488EDB_root_bact.o: $(ARBHOME)/INCLUDE/sized_cstr.h
[6277]1489EDB_root_bact.o: $(ARBHOME)/INCLUDE/smartptr.h
[9527]1490EDB_root_bact.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1491EDB_root_bact.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1492EDB_root_bact.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]1493
[5540]1494graph_aligner_gui.o: ed4_defs.hxx
1495graph_aligner_gui.o: graph_aligner_gui.hxx
[17944]1496graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_colorset.h
[5540]1497graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_prot.h
1498graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[6750]1499graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aisc_global.h
[5540]1500graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]1501graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]1502graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]1503graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_mem.h
[14556]1504graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_misc.h
[7183]1505graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_msg.h
[17724]1506graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7314]1507graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]1508graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_string.h
[5540]1509graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]1510graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[5540]1511graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]1512graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbtools.h
[5540]1513graph_aligner_gui.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]1514graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[7916]1515graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[5540]1516graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
[6868]1517graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[5540]1518graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1519graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]1520graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[8630]1521graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_position.hxx
[5540]1522graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1523graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[13731]1524graph_aligner_gui.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[5540]1525graph_aligner_gui.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[6750]1526graph_aligner_gui.o: $(ARBHOME)/INCLUDE/bytestring.h
[6868]1527graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cb.h
[11034]1528graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]1529graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cbtypes.h
[5540]1530graph_aligner_gui.o: $(ARBHOME)/INCLUDE/client.h
[6703]1531graph_aligner_gui.o: $(ARBHOME)/INCLUDE/client_types.h
[17724]1532graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[9521]1533graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]1534graph_aligner_gui.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]1535graph_aligner_gui.o: $(ARBHOME)/INCLUDE/dupstr.h
[5885]1536graph_aligner_gui.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
[9516]1537graph_aligner_gui.o: $(ARBHOME)/INCLUDE/gccver.h
[8614]1538graph_aligner_gui.o: $(ARBHOME)/INCLUDE/pos_range.h
[5604]1539graph_aligner_gui.o: $(ARBHOME)/INCLUDE/PT_com.h
[5540]1540graph_aligner_gui.o: $(ARBHOME)/INCLUDE/servercntrl.h
[6277]1541graph_aligner_gui.o: $(ARBHOME)/INCLUDE/smartptr.h
[10212]1542graph_aligner_gui.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]1543graph_aligner_gui.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]1544graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.