source: branches/help/EDIT4/Makefile

Last change on this file was 18727, checked in by westram, 3 years ago
  • inline SOURCES where only used to generate list of objects.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 66.8 KB
Line 
1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5OBJECTS=$(subst .cxx,.o,$(wildcard *.cxx))
6
7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
9
10.cxx.o:
11        $(A_CXX) $(cflags) $(cxxflags) -c -o $@ $(@:.o=.cxx)  $(CXX_INCLUDES) $(POST_COMPILE) $<
12
13clean:
14        rm -f $(OBJECTS) *.a
15
16DEPENDS = $(OBJECTS:.o=.depend)
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 >$@
27
28# DO NOT DELETE THIS LINE -- make depend depends on it.
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
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
37ED4_base.o: ed4_extern.hxx
38ED4_base.o: ed4_list.hxx
39ED4_base.o: ed4_search.hxx
40ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb.h
41ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
42ED4_base.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
46ED4_base.o: $(ARBHOME)/INCLUDE/arb_core.h
47ED4_base.o: $(ARBHOME)/INCLUDE/arb_error.h
48ED4_base.o: $(ARBHOME)/INCLUDE/arb_mem.h
49ED4_base.o: $(ARBHOME)/INCLUDE/arb_msg.h
50ED4_base.o: $(ARBHOME)/INCLUDE/arb_progress.h
51ED4_base.o: $(ARBHOME)/INCLUDE/arb_strarray.h
52ED4_base.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
53ED4_base.o: $(ARBHOME)/INCLUDE/arb_string.h
54ED4_base.o: $(ARBHOME)/INCLUDE/arbdb.h
55ED4_base.o: $(ARBHOME)/INCLUDE/arbdb_base.h
56ED4_base.o: $(ARBHOME)/INCLUDE/arbdbt.h
57ED4_base.o: $(ARBHOME)/INCLUDE/arbtools.h
58ED4_base.o: $(ARBHOME)/INCLUDE/attributes.h
59ED4_base.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
60ED4_base.o: $(ARBHOME)/INCLUDE/aw_base.hxx
61ED4_base.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
62ED4_base.o: $(ARBHOME)/INCLUDE/aw_device.hxx
63ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
64ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
65ED4_base.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
66ED4_base.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
67ED4_base.o: $(ARBHOME)/INCLUDE/aw_position.hxx
68ED4_base.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
69ED4_base.o: $(ARBHOME)/INCLUDE/aw_question.hxx
70ED4_base.o: $(ARBHOME)/INCLUDE/aw_root.hxx
71ED4_base.o: $(ARBHOME)/INCLUDE/aw_window.hxx
72ED4_base.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
73ED4_base.o: $(ARBHOME)/INCLUDE/cb.h
74ED4_base.o: $(ARBHOME)/INCLUDE/cb_base.h
75ED4_base.o: $(ARBHOME)/INCLUDE/cbtypes.h
76ED4_base.o: $(ARBHOME)/INCLUDE/chartable.h
77ED4_base.o: $(ARBHOME)/INCLUDE/cxxforward.h
78ED4_base.o: $(ARBHOME)/INCLUDE/downcast.h
79ED4_base.o: $(ARBHOME)/INCLUDE/dupstr.h
80ED4_base.o: $(ARBHOME)/INCLUDE/gccver.h
81ED4_base.o: $(ARBHOME)/INCLUDE/pos_range.h
82ED4_base.o: $(ARBHOME)/INCLUDE/sized_cstr.h
83ED4_base.o: $(ARBHOME)/INCLUDE/smartptr.h
84ED4_base.o: $(ARBHOME)/INCLUDE/static_assert.h
85ED4_base.o: $(ARBHOME)/INCLUDE/test_global.h
86ED4_base.o: $(ARBHOME)/INCLUDE/ttypes.h
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
93ED4_block.o: ed4_list.hxx
94ED4_block.o: ed4_search.hxx
95ED4_block.o: ed4_tools.hxx
96ED4_block.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
100ED4_block.o: $(ARBHOME)/INCLUDE/arb_core.h
101ED4_block.o: $(ARBHOME)/INCLUDE/arb_error.h
102ED4_block.o: $(ARBHOME)/INCLUDE/arb_mem.h
103ED4_block.o: $(ARBHOME)/INCLUDE/arb_msg.h
104ED4_block.o: $(ARBHOME)/INCLUDE/arb_str.h
105ED4_block.o: $(ARBHOME)/INCLUDE/arb_strarray.h
106ED4_block.o: $(ARBHOME)/INCLUDE/arb_string.h
107ED4_block.o: $(ARBHOME)/INCLUDE/arbdb.h
108ED4_block.o: $(ARBHOME)/INCLUDE/arbdb_base.h
109ED4_block.o: $(ARBHOME)/INCLUDE/arbdbt.h
110ED4_block.o: $(ARBHOME)/INCLUDE/arbtools.h
111ED4_block.o: $(ARBHOME)/INCLUDE/attributes.h
112ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
113ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
114ED4_block.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
115ED4_block.o: $(ARBHOME)/INCLUDE/aw_base.hxx
116ED4_block.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
117ED4_block.o: $(ARBHOME)/INCLUDE/aw_device.hxx
118ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
119ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
120ED4_block.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
121ED4_block.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
122ED4_block.o: $(ARBHOME)/INCLUDE/aw_position.hxx
123ED4_block.o: $(ARBHOME)/INCLUDE/aw_root.hxx
124ED4_block.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
125ED4_block.o: $(ARBHOME)/INCLUDE/aw_select.hxx
126ED4_block.o: $(ARBHOME)/INCLUDE/aw_window.hxx
127ED4_block.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
128ED4_block.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
129ED4_block.o: $(ARBHOME)/INCLUDE/cb.h
130ED4_block.o: $(ARBHOME)/INCLUDE/cb_base.h
131ED4_block.o: $(ARBHOME)/INCLUDE/cbtypes.h
132ED4_block.o: $(ARBHOME)/INCLUDE/chartable.h
133ED4_block.o: $(ARBHOME)/INCLUDE/cxxforward.h
134ED4_block.o: $(ARBHOME)/INCLUDE/downcast.h
135ED4_block.o: $(ARBHOME)/INCLUDE/dupstr.h
136ED4_block.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
137ED4_block.o: $(ARBHOME)/INCLUDE/gb_aci.h
138ED4_block.o: $(ARBHOME)/INCLUDE/gccver.h
139ED4_block.o: $(ARBHOME)/INCLUDE/pos_range.h
140ED4_block.o: $(ARBHOME)/INCLUDE/sized_cstr.h
141ED4_block.o: $(ARBHOME)/INCLUDE/smartptr.h
142ED4_block.o: $(ARBHOME)/INCLUDE/static_assert.h
143ED4_block.o: $(ARBHOME)/INCLUDE/test_global.h
144ED4_block.o: $(ARBHOME)/INCLUDE/test_unit.h
145ED4_block.o: $(ARBHOME)/INCLUDE/ttypes.h
146
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
152ED4_colStat.o: $(ARBHOME)/INCLUDE/ad_colorset.h
153ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_assert.h
154ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_core.h
155ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_error.h
156ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_mem.h
157ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_strarray.h
158ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_string.h
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
166ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
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
174ED4_colStat.o: $(ARBHOME)/INCLUDE/cb_base.h
175ED4_colStat.o: $(ARBHOME)/INCLUDE/cbtypes.h
176ED4_colStat.o: $(ARBHOME)/INCLUDE/chartable.h
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
182ED4_colStat.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
187ED4_colStat.o: $(ARBHOME)/INCLUDE/ttypes.h
188
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
194ED4_consensus.o: $(ARBHOME)/INCLUDE/ad_colorset.h
195ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_assert.h
196ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_core.h
197ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_error.h
198ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_mem.h
199ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_strarray.h
200ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_string.h
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
209ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
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
225ED4_consensus.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
231ED4_container.o: ed4_class.hxx
232ED4_container.o: ed4_defs.hxx
233ED4_container.o: ed4_search.hxx
234ED4_container.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
241ED4_container.o: $(ARBHOME)/INCLUDE/arb_strarray.h
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
251ED4_container.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
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
267ED4_container.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
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
277ED4_cursor.o: ed4_extern.hxx
278ED4_cursor.o: ed4_ProteinViewer.hxx
279ED4_cursor.o: ed4_search.hxx
280ED4_cursor.o: ed4_seq_colors.hxx
281ED4_cursor.o: ed4_tools.hxx
282ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
286ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_core.h
287ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_defs.h
288ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_error.h
289ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_mem.h
290ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_msg.h
291ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_progress.h
292ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strarray.h
293ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
294ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_string.h
295ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb.h
296ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb_base.h
297ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdbt.h
298ED4_cursor.o: $(ARBHOME)/INCLUDE/arbtools.h
299ED4_cursor.o: $(ARBHOME)/INCLUDE/attributes.h
300ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
301ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
302ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
303ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_base.hxx
304ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
305ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_device.hxx
306ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
307ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
308ED4_cursor.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
309ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
310ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
311ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_position.hxx
312ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_root.hxx
313ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_window.hxx
314ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
315ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
316ED4_cursor.o: $(ARBHOME)/INCLUDE/cb.h
317ED4_cursor.o: $(ARBHOME)/INCLUDE/cb_base.h
318ED4_cursor.o: $(ARBHOME)/INCLUDE/cbtypes.h
319ED4_cursor.o: $(ARBHOME)/INCLUDE/chartable.h
320ED4_cursor.o: $(ARBHOME)/INCLUDE/cxxforward.h
321ED4_cursor.o: $(ARBHOME)/INCLUDE/downcast.h
322ED4_cursor.o: $(ARBHOME)/INCLUDE/dupstr.h
323ED4_cursor.o: $(ARBHOME)/INCLUDE/gccver.h
324ED4_cursor.o: $(ARBHOME)/INCLUDE/iupac.h
325ED4_cursor.o: $(ARBHOME)/INCLUDE/pos_range.h
326ED4_cursor.o: $(ARBHOME)/INCLUDE/sized_cstr.h
327ED4_cursor.o: $(ARBHOME)/INCLUDE/smartptr.h
328ED4_cursor.o: $(ARBHOME)/INCLUDE/static_assert.h
329ED4_cursor.o: $(ARBHOME)/INCLUDE/test_global.h
330ED4_cursor.o: $(ARBHOME)/INCLUDE/test_helpers.h
331ED4_cursor.o: $(ARBHOME)/INCLUDE/test_unit.h
332ED4_cursor.o: $(ARBHOME)/INCLUDE/ttypes.h
333
334ED4_dots.o: ed4_class.hxx
335ED4_dots.o: ed4_defs.hxx
336ED4_dots.o: ed4_dots.hxx
337ED4_dots.o: ed4_search.hxx
338ED4_dots.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
342ED4_dots.o: $(ARBHOME)/INCLUDE/arb_core.h
343ED4_dots.o: $(ARBHOME)/INCLUDE/arb_error.h
344ED4_dots.o: $(ARBHOME)/INCLUDE/arb_mem.h
345ED4_dots.o: $(ARBHOME)/INCLUDE/arb_msg.h
346ED4_dots.o: $(ARBHOME)/INCLUDE/arb_strarray.h
347ED4_dots.o: $(ARBHOME)/INCLUDE/arb_string.h
348ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb.h
349ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb_base.h
350ED4_dots.o: $(ARBHOME)/INCLUDE/arbdbt.h
351ED4_dots.o: $(ARBHOME)/INCLUDE/arbtools.h
352ED4_dots.o: $(ARBHOME)/INCLUDE/attributes.h
353ED4_dots.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
354ED4_dots.o: $(ARBHOME)/INCLUDE/aw_base.hxx
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
358ED4_dots.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
359ED4_dots.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
360ED4_dots.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
361ED4_dots.o: $(ARBHOME)/INCLUDE/aw_position.hxx
362ED4_dots.o: $(ARBHOME)/INCLUDE/aw_root.hxx
363ED4_dots.o: $(ARBHOME)/INCLUDE/aw_window.hxx
364ED4_dots.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
365ED4_dots.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
366ED4_dots.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
367ED4_dots.o: $(ARBHOME)/INCLUDE/cb.h
368ED4_dots.o: $(ARBHOME)/INCLUDE/cb_base.h
369ED4_dots.o: $(ARBHOME)/INCLUDE/cbtypes.h
370ED4_dots.o: $(ARBHOME)/INCLUDE/chartable.h
371ED4_dots.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
372ED4_dots.o: $(ARBHOME)/INCLUDE/cxxforward.h
373ED4_dots.o: $(ARBHOME)/INCLUDE/downcast.h
374ED4_dots.o: $(ARBHOME)/INCLUDE/dupstr.h
375ED4_dots.o: $(ARBHOME)/INCLUDE/gccver.h
376ED4_dots.o: $(ARBHOME)/INCLUDE/pos_range.h
377ED4_dots.o: $(ARBHOME)/INCLUDE/sized_cstr.h
378ED4_dots.o: $(ARBHOME)/INCLUDE/smartptr.h
379ED4_dots.o: $(ARBHOME)/INCLUDE/static_assert.h
380ED4_dots.o: $(ARBHOME)/INCLUDE/test_global.h
381ED4_dots.o: $(ARBHOME)/INCLUDE/ttypes.h
382
383ED4_dump.o: ed4_class.hxx
384ED4_dump.o: ed4_defs.hxx
385ED4_dump.o: ed4_search.hxx
386ED4_dump.o: $(ARBHOME)/INCLUDE/ad_colorset.h
387ED4_dump.o: $(ARBHOME)/INCLUDE/ad_prot.h
388ED4_dump.o: $(ARBHOME)/INCLUDE/arb_assert.h
389ED4_dump.o: $(ARBHOME)/INCLUDE/arb_core.h
390ED4_dump.o: $(ARBHOME)/INCLUDE/arb_error.h
391ED4_dump.o: $(ARBHOME)/INCLUDE/arb_mem.h
392ED4_dump.o: $(ARBHOME)/INCLUDE/arb_msg.h
393ED4_dump.o: $(ARBHOME)/INCLUDE/arb_strarray.h
394ED4_dump.o: $(ARBHOME)/INCLUDE/arb_string.h
395ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb.h
396ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb_base.h
397ED4_dump.o: $(ARBHOME)/INCLUDE/arbtools.h
398ED4_dump.o: $(ARBHOME)/INCLUDE/attributes.h
399ED4_dump.o: $(ARBHOME)/INCLUDE/aw_base.hxx
400ED4_dump.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
401ED4_dump.o: $(ARBHOME)/INCLUDE/aw_device.hxx
402ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
403ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
404ED4_dump.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
405ED4_dump.o: $(ARBHOME)/INCLUDE/aw_position.hxx
406ED4_dump.o: $(ARBHOME)/INCLUDE/aw_window.hxx
407ED4_dump.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
408ED4_dump.o: $(ARBHOME)/INCLUDE/cb.h
409ED4_dump.o: $(ARBHOME)/INCLUDE/cb_base.h
410ED4_dump.o: $(ARBHOME)/INCLUDE/cbtypes.h
411ED4_dump.o: $(ARBHOME)/INCLUDE/chartable.h
412ED4_dump.o: $(ARBHOME)/INCLUDE/cxxforward.h
413ED4_dump.o: $(ARBHOME)/INCLUDE/downcast.h
414ED4_dump.o: $(ARBHOME)/INCLUDE/dupstr.h
415ED4_dump.o: $(ARBHOME)/INCLUDE/gccver.h
416ED4_dump.o: $(ARBHOME)/INCLUDE/pos_range.h
417ED4_dump.o: $(ARBHOME)/INCLUDE/sized_cstr.h
418ED4_dump.o: $(ARBHOME)/INCLUDE/smartptr.h
419ED4_dump.o: $(ARBHOME)/INCLUDE/static_assert.h
420ED4_dump.o: $(ARBHOME)/INCLUDE/test_global.h
421ED4_dump.o: $(ARBHOME)/INCLUDE/ttypes.h
422
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
428ED4_edit_string.o: ed4_seq_colors.hxx
429ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
433ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_core.h
434ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_error.h
435ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_mem.h
436ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_msg.h
437ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_strarray.h
438ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_string.h
439ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb.h
440ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb_base.h
441ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdbt.h
442ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbtools.h
443ED4_edit_string.o: $(ARBHOME)/INCLUDE/attributes.h
444ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
445ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
446ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_base.hxx
447ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
448ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_device.hxx
449ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
450ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
451ED4_edit_string.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
452ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
453ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
454ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_position.hxx
455ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_question.hxx
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
459ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
460ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
461ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb.h
462ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb_base.h
463ED4_edit_string.o: $(ARBHOME)/INCLUDE/cbtypes.h
464ED4_edit_string.o: $(ARBHOME)/INCLUDE/chartable.h
465ED4_edit_string.o: $(ARBHOME)/INCLUDE/cxxforward.h
466ED4_edit_string.o: $(ARBHOME)/INCLUDE/downcast.h
467ED4_edit_string.o: $(ARBHOME)/INCLUDE/dupstr.h
468ED4_edit_string.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
469ED4_edit_string.o: $(ARBHOME)/INCLUDE/gccver.h
470ED4_edit_string.o: $(ARBHOME)/INCLUDE/pos_range.h
471ED4_edit_string.o: $(ARBHOME)/INCLUDE/sized_cstr.h
472ED4_edit_string.o: $(ARBHOME)/INCLUDE/smartptr.h
473ED4_edit_string.o: $(ARBHOME)/INCLUDE/static_assert.h
474ED4_edit_string.o: $(ARBHOME)/INCLUDE/test_global.h
475ED4_edit_string.o: $(ARBHOME)/INCLUDE/ttypes.h
476
477ED4_flags.o: ed4_class.hxx
478ED4_flags.o: ed4_defs.hxx
479ED4_flags.o: ed4_flags.hxx
480ED4_flags.o: ed4_search.hxx
481ED4_flags.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
489ED4_flags.o: $(ARBHOME)/INCLUDE/arb_strarray.h
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
515ED4_flags.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
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
523ED4_flags.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
529ED4_main.o: ed4_awars.hxx
530ED4_main.o: ed4_class.hxx
531ED4_main.o: ed4_defs.hxx
532ED4_main.o: ed4_dots.hxx
533ED4_main.o: ed4_edit_string.hxx
534ED4_main.o: ed4_extern.hxx
535ED4_main.o: ed4_naligner.hxx
536ED4_main.o: ed4_nds.hxx
537ED4_main.o: ed4_protein_2nd_structure.hxx
538ED4_main.o: ed4_ProteinViewer.hxx
539ED4_main.o: ed4_search.hxx
540ED4_main.o: ed4_seq_colors.hxx
541ED4_main.o: ed4_visualizeSAI.hxx
542ED4_main.o: graph_aligner_gui.hxx
543ED4_main.o: $(ARBHOME)/INCLUDE/ad_colorset.h
544ED4_main.o: $(ARBHOME)/INCLUDE/ad_config.h
545ED4_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
546ED4_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
547ED4_main.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
548ED4_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
549ED4_main.o: $(ARBHOME)/INCLUDE/arb_core.h
550ED4_main.o: $(ARBHOME)/INCLUDE/arb_defs.h
551ED4_main.o: $(ARBHOME)/INCLUDE/arb_error.h
552ED4_main.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
553ED4_main.o: $(ARBHOME)/INCLUDE/arb_mem.h
554ED4_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
555ED4_main.o: $(ARBHOME)/INCLUDE/arb_strarray.h
556ED4_main.o: $(ARBHOME)/INCLUDE/arb_string.h
557ED4_main.o: $(ARBHOME)/INCLUDE/arbdb.h
558ED4_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
559ED4_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
560ED4_main.o: $(ARBHOME)/INCLUDE/arbtools.h
561ED4_main.o: $(ARBHOME)/INCLUDE/attributes.h
562ED4_main.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
563ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
564ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
565ED4_main.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
566ED4_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
567ED4_main.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
568ED4_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx
569ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
570ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
571ED4_main.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
572ED4_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
573ED4_main.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
574ED4_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx
575ED4_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
576ED4_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
577ED4_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
578ED4_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
579ED4_main.o: $(ARBHOME)/INCLUDE/awt.hxx
580ED4_main.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
581ED4_main.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
582ED4_main.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
583ED4_main.o: $(ARBHOME)/INCLUDE/cb.h
584ED4_main.o: $(ARBHOME)/INCLUDE/cb_base.h
585ED4_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
586ED4_main.o: $(ARBHOME)/INCLUDE/chartable.h
587ED4_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
588ED4_main.o: $(ARBHOME)/INCLUDE/downcast.h
589ED4_main.o: $(ARBHOME)/INCLUDE/dupstr.h
590ED4_main.o: $(ARBHOME)/INCLUDE/gccver.h
591ED4_main.o: $(ARBHOME)/INCLUDE/gde.hxx
592ED4_main.o: $(ARBHOME)/INCLUDE/macros.hxx
593ED4_main.o: $(ARBHOME)/INCLUDE/pos_range.h
594ED4_main.o: $(ARBHOME)/INCLUDE/sized_cstr.h
595ED4_main.o: $(ARBHOME)/INCLUDE/smartptr.h
596ED4_main.o: $(ARBHOME)/INCLUDE/st_window.hxx
597ED4_main.o: $(ARBHOME)/INCLUDE/static_assert.h
598ED4_main.o: $(ARBHOME)/INCLUDE/test_global.h
599ED4_main.o: $(ARBHOME)/INCLUDE/ttypes.h
600
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
605ED4_manager.o: ed4_list.hxx
606ED4_manager.o: ed4_protein_2nd_structure.hxx
607ED4_manager.o: ed4_ProteinViewer.hxx
608ED4_manager.o: ed4_search.hxx
609ED4_manager.o: ed4_seq_colors.hxx
610ED4_manager.o: ed4_tools.hxx
611ED4_manager.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
615ED4_manager.o: $(ARBHOME)/INCLUDE/arb_core.h
616ED4_manager.o: $(ARBHOME)/INCLUDE/arb_error.h
617ED4_manager.o: $(ARBHOME)/INCLUDE/arb_mem.h
618ED4_manager.o: $(ARBHOME)/INCLUDE/arb_msg.h
619ED4_manager.o: $(ARBHOME)/INCLUDE/arb_strarray.h
620ED4_manager.o: $(ARBHOME)/INCLUDE/arb_string.h
621ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb.h
622ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb_base.h
623ED4_manager.o: $(ARBHOME)/INCLUDE/arbdbt.h
624ED4_manager.o: $(ARBHOME)/INCLUDE/arbtools.h
625ED4_manager.o: $(ARBHOME)/INCLUDE/attributes.h
626ED4_manager.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
627ED4_manager.o: $(ARBHOME)/INCLUDE/aw_base.hxx
628ED4_manager.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
629ED4_manager.o: $(ARBHOME)/INCLUDE/aw_device.hxx
630ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
631ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
632ED4_manager.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
633ED4_manager.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
634ED4_manager.o: $(ARBHOME)/INCLUDE/aw_position.hxx
635ED4_manager.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
636ED4_manager.o: $(ARBHOME)/INCLUDE/aw_root.hxx
637ED4_manager.o: $(ARBHOME)/INCLUDE/aw_window.hxx
638ED4_manager.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
639ED4_manager.o: $(ARBHOME)/INCLUDE/cb.h
640ED4_manager.o: $(ARBHOME)/INCLUDE/cb_base.h
641ED4_manager.o: $(ARBHOME)/INCLUDE/cbtypes.h
642ED4_manager.o: $(ARBHOME)/INCLUDE/chartable.h
643ED4_manager.o: $(ARBHOME)/INCLUDE/cxxforward.h
644ED4_manager.o: $(ARBHOME)/INCLUDE/downcast.h
645ED4_manager.o: $(ARBHOME)/INCLUDE/dupstr.h
646ED4_manager.o: $(ARBHOME)/INCLUDE/gccver.h
647ED4_manager.o: $(ARBHOME)/INCLUDE/pos_range.h
648ED4_manager.o: $(ARBHOME)/INCLUDE/sized_cstr.h
649ED4_manager.o: $(ARBHOME)/INCLUDE/smartptr.h
650ED4_manager.o: $(ARBHOME)/INCLUDE/static_assert.h
651ED4_manager.o: $(ARBHOME)/INCLUDE/test_global.h
652ED4_manager.o: $(ARBHOME)/INCLUDE/ttypes.h
653
654ED4_naligner.o: ed4_naligner.hxx
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
658ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_core.h
659ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_error.h
660ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_mem.h
661ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_msg.h
662ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
663ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_string.h
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
669ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
670ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
671ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
672ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_base.hxx
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
677ED4_naligner.o: $(ARBHOME)/INCLUDE/cb.h
678ED4_naligner.o: $(ARBHOME)/INCLUDE/cb_base.h
679ED4_naligner.o: $(ARBHOME)/INCLUDE/cbtypes.h
680ED4_naligner.o: $(ARBHOME)/INCLUDE/cxxforward.h
681ED4_naligner.o: $(ARBHOME)/INCLUDE/downcast.h
682ED4_naligner.o: $(ARBHOME)/INCLUDE/dupstr.h
683ED4_naligner.o: $(ARBHOME)/INCLUDE/gccver.h
684ED4_naligner.o: $(ARBHOME)/INCLUDE/smartptr.h
685ED4_naligner.o: $(ARBHOME)/INCLUDE/static_assert.h
686ED4_naligner.o: $(ARBHOME)/INCLUDE/test_global.h
687ED4_naligner.o: $(ARBHOME)/INCLUDE/ttypes.h
688
689ED4_nds.o: ed4_awars.hxx
690ED4_nds.o: ed4_class.hxx
691ED4_nds.o: ed4_defs.hxx
692ED4_nds.o: ed4_search.hxx
693ED4_nds.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
697ED4_nds.o: $(ARBHOME)/INCLUDE/arb_core.h
698ED4_nds.o: $(ARBHOME)/INCLUDE/arb_error.h
699ED4_nds.o: $(ARBHOME)/INCLUDE/arb_mem.h
700ED4_nds.o: $(ARBHOME)/INCLUDE/arb_msg.h
701ED4_nds.o: $(ARBHOME)/INCLUDE/arb_str.h
702ED4_nds.o: $(ARBHOME)/INCLUDE/arb_strarray.h
703ED4_nds.o: $(ARBHOME)/INCLUDE/arb_string.h
704ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb.h
705ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb_base.h
706ED4_nds.o: $(ARBHOME)/INCLUDE/arbdbt.h
707ED4_nds.o: $(ARBHOME)/INCLUDE/arbtools.h
708ED4_nds.o: $(ARBHOME)/INCLUDE/attributes.h
709ED4_nds.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
710ED4_nds.o: $(ARBHOME)/INCLUDE/aw_base.hxx
711ED4_nds.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
712ED4_nds.o: $(ARBHOME)/INCLUDE/aw_device.hxx
713ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
714ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
715ED4_nds.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
716ED4_nds.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
717ED4_nds.o: $(ARBHOME)/INCLUDE/aw_position.hxx
718ED4_nds.o: $(ARBHOME)/INCLUDE/aw_root.hxx
719ED4_nds.o: $(ARBHOME)/INCLUDE/aw_window.hxx
720ED4_nds.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
721ED4_nds.o: $(ARBHOME)/INCLUDE/cb.h
722ED4_nds.o: $(ARBHOME)/INCLUDE/cb_base.h
723ED4_nds.o: $(ARBHOME)/INCLUDE/cbtypes.h
724ED4_nds.o: $(ARBHOME)/INCLUDE/chartable.h
725ED4_nds.o: $(ARBHOME)/INCLUDE/cxxforward.h
726ED4_nds.o: $(ARBHOME)/INCLUDE/downcast.h
727ED4_nds.o: $(ARBHOME)/INCLUDE/dupstr.h
728ED4_nds.o: $(ARBHOME)/INCLUDE/gb_aci.h
729ED4_nds.o: $(ARBHOME)/INCLUDE/gccver.h
730ED4_nds.o: $(ARBHOME)/INCLUDE/nds.h
731ED4_nds.o: $(ARBHOME)/INCLUDE/pos_range.h
732ED4_nds.o: $(ARBHOME)/INCLUDE/sized_cstr.h
733ED4_nds.o: $(ARBHOME)/INCLUDE/smartptr.h
734ED4_nds.o: $(ARBHOME)/INCLUDE/static_assert.h
735ED4_nds.o: $(ARBHOME)/INCLUDE/test_global.h
736ED4_nds.o: $(ARBHOME)/INCLUDE/TreeLabeler.h
737ED4_nds.o: $(ARBHOME)/INCLUDE/ttypes.h
738
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
743ED4_no_class.o: ed4_extern.hxx
744ED4_no_class.o: ed4_flags.hxx
745ED4_no_class.o: ed4_list.hxx
746ED4_no_class.o: ed4_nds.hxx
747ED4_no_class.o: ed4_search.hxx
748ED4_no_class.o: ed4_seq_colors.hxx
749ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_colorset.h
750ED4_no_class.o: $(ARBHOME)/INCLUDE/ad_config.h
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
754ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_core.h
755ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_defs.h
756ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_error.h
757ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
758ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_mem.h
759ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_msg.h
760ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_progress.h
761ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_strarray.h
762ED4_no_class.o: $(ARBHOME)/INCLUDE/arb_string.h
763ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdb.h
764ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdb_base.h
765ED4_no_class.o: $(ARBHOME)/INCLUDE/arbdbt.h
766ED4_no_class.o: $(ARBHOME)/INCLUDE/arbtools.h
767ED4_no_class.o: $(ARBHOME)/INCLUDE/attributes.h
768ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
769ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
770ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
771ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_base.hxx
772ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
773ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_device.hxx
774ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
775ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
776ED4_no_class.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
777ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
778ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
779ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_position.hxx
780ED4_no_class.o: $(ARBHOME)/INCLUDE/AW_rename.hxx
781ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_root.hxx
782ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
783ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_select.hxx
784ED4_no_class.o: $(ARBHOME)/INCLUDE/aw_window.hxx
785ED4_no_class.o: $(ARBHOME)/INCLUDE/awt.hxx
786ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
787ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_misc.hxx
788ED4_no_class.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
789ED4_no_class.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
790ED4_no_class.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
791ED4_no_class.o: $(ARBHOME)/INCLUDE/cb.h
792ED4_no_class.o: $(ARBHOME)/INCLUDE/cb_base.h
793ED4_no_class.o: $(ARBHOME)/INCLUDE/cbtypes.h
794ED4_no_class.o: $(ARBHOME)/INCLUDE/chartable.h
795ED4_no_class.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
796ED4_no_class.o: $(ARBHOME)/INCLUDE/consensus_config.h
797ED4_no_class.o: $(ARBHOME)/INCLUDE/cxxforward.h
798ED4_no_class.o: $(ARBHOME)/INCLUDE/downcast.h
799ED4_no_class.o: $(ARBHOME)/INCLUDE/dupstr.h
800ED4_no_class.o: $(ARBHOME)/INCLUDE/gccver.h
801ED4_no_class.o: $(ARBHOME)/INCLUDE/item_sel_list.h
802ED4_no_class.o: $(ARBHOME)/INCLUDE/items.h
803ED4_no_class.o: $(ARBHOME)/INCLUDE/iupac.h
804ED4_no_class.o: $(ARBHOME)/INCLUDE/macros.hxx
805ED4_no_class.o: $(ARBHOME)/INCLUDE/pos_range.h
806ED4_no_class.o: $(ARBHOME)/INCLUDE/sized_cstr.h
807ED4_no_class.o: $(ARBHOME)/INCLUDE/smartptr.h
808ED4_no_class.o: $(ARBHOME)/INCLUDE/static_assert.h
809ED4_no_class.o: $(ARBHOME)/INCLUDE/test_global.h
810ED4_no_class.o: $(ARBHOME)/INCLUDE/ttypes.h
811
812ED4_objspec.o: ed4_class.hxx
813ED4_objspec.o: ed4_defs.hxx
814ED4_objspec.o: ed4_search.hxx
815ED4_objspec.o: $(ARBHOME)/INCLUDE/ad_colorset.h
816ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_assert.h
817ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_core.h
818ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_error.h
819ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_mem.h
820ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_strarray.h
821ED4_objspec.o: $(ARBHOME)/INCLUDE/arb_string.h
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
829ED4_objspec.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
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
834ED4_objspec.o: $(ARBHOME)/INCLUDE/cb.h
835ED4_objspec.o: $(ARBHOME)/INCLUDE/cb_base.h
836ED4_objspec.o: $(ARBHOME)/INCLUDE/cbtypes.h
837ED4_objspec.o: $(ARBHOME)/INCLUDE/chartable.h
838ED4_objspec.o: $(ARBHOME)/INCLUDE/cxxforward.h
839ED4_objspec.o: $(ARBHOME)/INCLUDE/downcast.h
840ED4_objspec.o: $(ARBHOME)/INCLUDE/dupstr.h
841ED4_objspec.o: $(ARBHOME)/INCLUDE/gccver.h
842ED4_objspec.o: $(ARBHOME)/INCLUDE/pos_range.h
843ED4_objspec.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
848ED4_objspec.o: $(ARBHOME)/INCLUDE/ttypes.h
849
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
855ED4_plugins.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
861ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_mem.h
862ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_msg.h
863ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_strarray.h
864ED4_plugins.o: $(ARBHOME)/INCLUDE/arb_string.h
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
869ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_base.hxx
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
873ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
874ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
875ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
876ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_position.hxx
877ED4_plugins.o: $(ARBHOME)/INCLUDE/aw_window.hxx
878ED4_plugins.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
879ED4_plugins.o: $(ARBHOME)/INCLUDE/cb.h
880ED4_plugins.o: $(ARBHOME)/INCLUDE/cb_base.h
881ED4_plugins.o: $(ARBHOME)/INCLUDE/cbtypes.h
882ED4_plugins.o: $(ARBHOME)/INCLUDE/chartable.h
883ED4_plugins.o: $(ARBHOME)/INCLUDE/cxxforward.h
884ED4_plugins.o: $(ARBHOME)/INCLUDE/downcast.h
885ED4_plugins.o: $(ARBHOME)/INCLUDE/dupstr.h
886ED4_plugins.o: $(ARBHOME)/INCLUDE/gccver.h
887ED4_plugins.o: $(ARBHOME)/INCLUDE/pos_range.h
888ED4_plugins.o: $(ARBHOME)/INCLUDE/rna3d_extern.hxx
889ED4_plugins.o: $(ARBHOME)/INCLUDE/secedit_extern.hxx
890ED4_plugins.o: $(ARBHOME)/INCLUDE/sized_cstr.h
891ED4_plugins.o: $(ARBHOME)/INCLUDE/smartptr.h
892ED4_plugins.o: $(ARBHOME)/INCLUDE/static_assert.h
893ED4_plugins.o: $(ARBHOME)/INCLUDE/test_global.h
894ED4_plugins.o: $(ARBHOME)/INCLUDE/test_unit.h
895ED4_plugins.o: $(ARBHOME)/INCLUDE/ttypes.h
896
897ED4_protein_2nd_structure.o: ed4_awars.hxx
898ED4_protein_2nd_structure.o: ed4_class.hxx
899ED4_protein_2nd_structure.o: ed4_defs.hxx
900ED4_protein_2nd_structure.o: ed4_protein_2nd_structure.hxx
901ED4_protein_2nd_structure.o: ed4_search.hxx
902ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_colorset.h
903ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_prot.h
904ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
905ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_assert.h
906ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_core.h
907ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_error.h
908ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_mem.h
909ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_msg.h
910ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_strarray.h
911ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arb_string.h
912ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdb.h
913ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdb_base.h
914ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbdbt.h
915ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/arbtools.h
916ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/attributes.h
917ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
918ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_base.hxx
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
922ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
923ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
924ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
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
928ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
929ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
930ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cb.h
931ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cb_base.h
932ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cbtypes.h
933ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/chartable.h
934ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
935ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/cxxforward.h
936ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/downcast.h
937ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/dupstr.h
938ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/gccver.h
939ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/pos_range.h
940ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/sized_cstr.h
941ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/smartptr.h
942ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/static_assert.h
943ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/test_global.h
944ED4_protein_2nd_structure.o: $(ARBHOME)/INCLUDE/ttypes.h
945
946ED4_ProteinViewer.o: ed4_class.hxx
947ED4_ProteinViewer.o: ed4_defs.hxx
948ED4_ProteinViewer.o: ed4_edit_string.hxx
949ED4_ProteinViewer.o: ed4_ProteinViewer.hxx
950ED4_ProteinViewer.o: ed4_search.hxx
951ED4_ProteinViewer.o: ed4_seq_colors.hxx
952ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_colorset.h
953ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_prot.h
954ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
955ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/AP_codon_table.hxx
956ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
957ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_assert.h
958ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_core.h
959ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_error.h
960ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_mem.h
961ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_msg.h
962ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_strarray.h
963ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arb_string.h
964ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdb.h
965ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdb_base.h
966ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbdbt.h
967ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/arbtools.h
968ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/attributes.h
969ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
970ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
971ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
972ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_base.hxx
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
976ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
977ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
978ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
979ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_position.hxx
980ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
981ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_question.hxx
982ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_root.hxx
983ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/aw_window.hxx
984ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
985ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cb.h
986ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cb_base.h
987ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cbtypes.h
988ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/chartable.h
989ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/cxxforward.h
990ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/downcast.h
991ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/dupstr.h
992ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/gccver.h
993ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/pos_range.h
994ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/sized_cstr.h
995ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/smartptr.h
996ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/static_assert.h
997ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/test_global.h
998ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/Translate.hxx
999ED4_ProteinViewer.o: $(ARBHOME)/INCLUDE/ttypes.h
1000
1001ED4_root.o: ../WINDOW/aw_status.hxx
1002ED4_root.o: ed4_awars.hxx
1003ED4_root.o: ed4_block.hxx
1004ED4_root.o: ed4_class.hxx
1005ED4_root.o: ed4_colStat.hxx
1006ED4_root.o: ed4_defs.hxx
1007ED4_root.o: ed4_dots.hxx
1008ED4_root.o: ed4_extern.hxx
1009ED4_root.o: ed4_flags.hxx
1010ED4_root.o: ed4_list.hxx
1011ED4_root.o: ed4_naligner.hxx
1012ED4_root.o: ed4_nds.hxx
1013ED4_root.o: ed4_plugins.hxx
1014ED4_root.o: ed4_protein_2nd_structure.hxx
1015ED4_root.o: ed4_ProteinViewer.hxx
1016ED4_root.o: ed4_search.hxx
1017ED4_root.o: ed4_seq_colors.hxx
1018ED4_root.o: ed4_tools.hxx
1019ED4_root.o: ed4_visualizeSAI.hxx
1020ED4_root.o: graph_aligner_gui.hxx
1021ED4_root.o: $(ARBHOME)/INCLUDE/ad_cb.h
1022ED4_root.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
1023ED4_root.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
1027ED4_root.o: $(ARBHOME)/INCLUDE/arb_build.h
1028ED4_root.o: $(ARBHOME)/INCLUDE/arb_core.h
1029ED4_root.o: $(ARBHOME)/INCLUDE/arb_defs.h
1030ED4_root.o: $(ARBHOME)/INCLUDE/arb_error.h
1031ED4_root.o: $(ARBHOME)/INCLUDE/arb_file.h
1032ED4_root.o: $(ARBHOME)/INCLUDE/arb_mem.h
1033ED4_root.o: $(ARBHOME)/INCLUDE/arb_msg.h
1034ED4_root.o: $(ARBHOME)/INCLUDE/arb_progress.h
1035ED4_root.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1036ED4_root.o: $(ARBHOME)/INCLUDE/arb_string.h
1037ED4_root.o: $(ARBHOME)/INCLUDE/arb_version.h
1038ED4_root.o: $(ARBHOME)/INCLUDE/arbdb.h
1039ED4_root.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1040ED4_root.o: $(ARBHOME)/INCLUDE/arbdbt.h
1041ED4_root.o: $(ARBHOME)/INCLUDE/arbtools.h
1042ED4_root.o: $(ARBHOME)/INCLUDE/attributes.h
1043ED4_root.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
1044ED4_root.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1045ED4_root.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1046ED4_root.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
1047ED4_root.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1048ED4_root.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1049ED4_root.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1050ED4_root.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1051ED4_root.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1052ED4_root.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
1053ED4_root.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1054ED4_root.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1055ED4_root.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1056ED4_root.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
1057ED4_root.o: $(ARBHOME)/INCLUDE/aw_question.hxx
1058ED4_root.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1059ED4_root.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1060ED4_root.o: $(ARBHOME)/INCLUDE/awt.hxx
1061ED4_root.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
1062ED4_root.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1063ED4_root.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
1064ED4_root.o: $(ARBHOME)/INCLUDE/cb.h
1065ED4_root.o: $(ARBHOME)/INCLUDE/cb_base.h
1066ED4_root.o: $(ARBHOME)/INCLUDE/cbtypes.h
1067ED4_root.o: $(ARBHOME)/INCLUDE/chartable.h
1068ED4_root.o: $(ARBHOME)/INCLUDE/cxxforward.h
1069ED4_root.o: $(ARBHOME)/INCLUDE/downcast.h
1070ED4_root.o: $(ARBHOME)/INCLUDE/dupstr.h
1071ED4_root.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
1072ED4_root.o: $(ARBHOME)/INCLUDE/gccver.h
1073ED4_root.o: $(ARBHOME)/INCLUDE/gde.hxx
1074ED4_root.o: $(ARBHOME)/INCLUDE/macros.hxx
1075ED4_root.o: $(ARBHOME)/INCLUDE/pos_range.h
1076ED4_root.o: $(ARBHOME)/INCLUDE/rootAsWin.h
1077ED4_root.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1078ED4_root.o: $(ARBHOME)/INCLUDE/smartptr.h
1079ED4_root.o: $(ARBHOME)/INCLUDE/st_window.hxx
1080ED4_root.o: $(ARBHOME)/INCLUDE/static_assert.h
1081ED4_root.o: $(ARBHOME)/INCLUDE/svn_revision.h
1082ED4_root.o: $(ARBHOME)/INCLUDE/test_global.h
1083ED4_root.o: $(ARBHOME)/INCLUDE/test_unit.h
1084ED4_root.o: $(ARBHOME)/INCLUDE/ttypes.h
1085
1086ED4_search.o: ed4_awars.hxx
1087ED4_search.o: ed4_class.hxx
1088ED4_search.o: ed4_defs.hxx
1089ED4_search.o: ed4_edit_string.hxx
1090ED4_search.o: ed4_extern.hxx
1091ED4_search.o: ed4_search.hxx
1092ED4_search.o: ed4_tools.hxx
1093ED4_search.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
1097ED4_search.o: $(ARBHOME)/INCLUDE/arb_core.h
1098ED4_search.o: $(ARBHOME)/INCLUDE/arb_error.h
1099ED4_search.o: $(ARBHOME)/INCLUDE/arb_mem.h
1100ED4_search.o: $(ARBHOME)/INCLUDE/arb_msg.h
1101ED4_search.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1102ED4_search.o: $(ARBHOME)/INCLUDE/arb_string.h
1103ED4_search.o: $(ARBHOME)/INCLUDE/arbdb.h
1104ED4_search.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1105ED4_search.o: $(ARBHOME)/INCLUDE/arbdbt.h
1106ED4_search.o: $(ARBHOME)/INCLUDE/arbtools.h
1107ED4_search.o: $(ARBHOME)/INCLUDE/attributes.h
1108ED4_search.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1109ED4_search.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1110ED4_search.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
1111ED4_search.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1112ED4_search.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1113ED4_search.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1114ED4_search.o: $(ARBHOME)/INCLUDE/aw_file.hxx
1115ED4_search.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1116ED4_search.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1117ED4_search.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1118ED4_search.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1119ED4_search.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1120ED4_search.o: $(ARBHOME)/INCLUDE/aw_question.hxx
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
1124ED4_search.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1125ED4_search.o: $(ARBHOME)/INCLUDE/cb.h
1126ED4_search.o: $(ARBHOME)/INCLUDE/cb_base.h
1127ED4_search.o: $(ARBHOME)/INCLUDE/cbtypes.h
1128ED4_search.o: $(ARBHOME)/INCLUDE/chartable.h
1129ED4_search.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
1130ED4_search.o: $(ARBHOME)/INCLUDE/cxxforward.h
1131ED4_search.o: $(ARBHOME)/INCLUDE/downcast.h
1132ED4_search.o: $(ARBHOME)/INCLUDE/dupstr.h
1133ED4_search.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
1134ED4_search.o: $(ARBHOME)/INCLUDE/gccver.h
1135ED4_search.o: $(ARBHOME)/INCLUDE/pos_range.h
1136ED4_search.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1137ED4_search.o: $(ARBHOME)/INCLUDE/smartptr.h
1138ED4_search.o: $(ARBHOME)/INCLUDE/static_assert.h
1139ED4_search.o: $(ARBHOME)/INCLUDE/test_global.h
1140ED4_search.o: $(ARBHOME)/INCLUDE/ttypes.h
1141
1142ED4_seq_colors.o: ed4_class.hxx
1143ED4_seq_colors.o: ed4_defs.hxx
1144ED4_seq_colors.o: ed4_extern.hxx
1145ED4_seq_colors.o: ed4_search.hxx
1146ED4_seq_colors.o: ed4_seq_colors.hxx
1147ED4_seq_colors.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
1153ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
1154ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_mem.h
1155ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_msg.h
1156ED4_seq_colors.o: $(ARBHOME)/INCLUDE/arb_strarray.h
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
1169ED4_seq_colors.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
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
1185ED4_seq_colors.o: $(ARBHOME)/INCLUDE/sized_cstr.h
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
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
1196ED4_terminal.o: ed4_extern.hxx
1197ED4_terminal.o: ed4_flags.hxx
1198ED4_terminal.o: ed4_nds.hxx
1199ED4_terminal.o: ed4_ProteinViewer.hxx
1200ED4_terminal.o: ed4_search.hxx
1201ED4_terminal.o: ed4_seq_colors.hxx
1202ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1203ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_prot.h
1204ED4_terminal.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1205ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_assert.h
1206ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_core.h
1207ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_error.h
1208ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_mem.h
1209ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_msg.h
1210ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1211ED4_terminal.o: $(ARBHOME)/INCLUDE/arb_string.h
1212ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdb.h
1213ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1214ED4_terminal.o: $(ARBHOME)/INCLUDE/arbdbt.h
1215ED4_terminal.o: $(ARBHOME)/INCLUDE/arbtools.h
1216ED4_terminal.o: $(ARBHOME)/INCLUDE/attributes.h
1217ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1218ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1219ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1220ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1221ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1222ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1223ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1224ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1225ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1226ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1227ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
1228ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_question.hxx
1229ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1230ED4_terminal.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1231ED4_terminal.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1232ED4_terminal.o: $(ARBHOME)/INCLUDE/cb.h
1233ED4_terminal.o: $(ARBHOME)/INCLUDE/cb_base.h
1234ED4_terminal.o: $(ARBHOME)/INCLUDE/cbtypes.h
1235ED4_terminal.o: $(ARBHOME)/INCLUDE/chartable.h
1236ED4_terminal.o: $(ARBHOME)/INCLUDE/cxxforward.h
1237ED4_terminal.o: $(ARBHOME)/INCLUDE/downcast.h
1238ED4_terminal.o: $(ARBHOME)/INCLUDE/dupstr.h
1239ED4_terminal.o: $(ARBHOME)/INCLUDE/gccver.h
1240ED4_terminal.o: $(ARBHOME)/INCLUDE/items.h
1241ED4_terminal.o: $(ARBHOME)/INCLUDE/pos_range.h
1242ED4_terminal.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1243ED4_terminal.o: $(ARBHOME)/INCLUDE/smartptr.h
1244ED4_terminal.o: $(ARBHOME)/INCLUDE/st_window.hxx
1245ED4_terminal.o: $(ARBHOME)/INCLUDE/static_assert.h
1246ED4_terminal.o: $(ARBHOME)/INCLUDE/test_global.h
1247ED4_terminal.o: $(ARBHOME)/INCLUDE/ttypes.h
1248
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
1254ED4_text_terminals.o: ed4_extern.hxx
1255ED4_text_terminals.o: ed4_nds.hxx
1256ED4_text_terminals.o: ed4_protein_2nd_structure.hxx
1257ED4_text_terminals.o: ed4_ProteinViewer.hxx
1258ED4_text_terminals.o: ed4_search.hxx
1259ED4_text_terminals.o: ed4_seq_colors.hxx
1260ED4_text_terminals.o: ed4_visualizeSAI.hxx
1261ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1262ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_prot.h
1263ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1264ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_assert.h
1265ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_core.h
1266ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_error.h
1267ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_mem.h
1268ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_msg.h
1269ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1270ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arb_string.h
1271ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdb.h
1272ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1273ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbdbt.h
1274ED4_text_terminals.o: $(ARBHOME)/INCLUDE/arbtools.h
1275ED4_text_terminals.o: $(ARBHOME)/INCLUDE/attributes.h
1276ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1277ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1278ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1279ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1280ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1281ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1282ED4_text_terminals.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
1283ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1284ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1285ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1286ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
1287ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1288ED4_text_terminals.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1289ED4_text_terminals.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1290ED4_text_terminals.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
1291ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cb.h
1292ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cb_base.h
1293ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cbtypes.h
1294ED4_text_terminals.o: $(ARBHOME)/INCLUDE/chartable.h
1295ED4_text_terminals.o: $(ARBHOME)/INCLUDE/cxxforward.h
1296ED4_text_terminals.o: $(ARBHOME)/INCLUDE/downcast.h
1297ED4_text_terminals.o: $(ARBHOME)/INCLUDE/dupstr.h
1298ED4_text_terminals.o: $(ARBHOME)/INCLUDE/gccver.h
1299ED4_text_terminals.o: $(ARBHOME)/INCLUDE/pos_range.h
1300ED4_text_terminals.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1301ED4_text_terminals.o: $(ARBHOME)/INCLUDE/smartptr.h
1302ED4_text_terminals.o: $(ARBHOME)/INCLUDE/st_window.hxx
1303ED4_text_terminals.o: $(ARBHOME)/INCLUDE/static_assert.h
1304ED4_text_terminals.o: $(ARBHOME)/INCLUDE/test_global.h
1305ED4_text_terminals.o: $(ARBHOME)/INCLUDE/ttypes.h
1306
1307ED4_tools.o: ed4_class.hxx
1308ED4_tools.o: ed4_defs.hxx
1309ED4_tools.o: ed4_search.hxx
1310ED4_tools.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1311ED4_tools.o: $(ARBHOME)/INCLUDE/arb_assert.h
1312ED4_tools.o: $(ARBHOME)/INCLUDE/arb_core.h
1313ED4_tools.o: $(ARBHOME)/INCLUDE/arb_error.h
1314ED4_tools.o: $(ARBHOME)/INCLUDE/arb_mem.h
1315ED4_tools.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1316ED4_tools.o: $(ARBHOME)/INCLUDE/arb_string.h
1317ED4_tools.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1318ED4_tools.o: $(ARBHOME)/INCLUDE/arbtools.h
1319ED4_tools.o: $(ARBHOME)/INCLUDE/attributes.h
1320ED4_tools.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1321ED4_tools.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1322ED4_tools.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1323ED4_tools.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1324ED4_tools.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1325ED4_tools.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1326ED4_tools.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1327ED4_tools.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1328ED4_tools.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1329ED4_tools.o: $(ARBHOME)/INCLUDE/cb.h
1330ED4_tools.o: $(ARBHOME)/INCLUDE/cb_base.h
1331ED4_tools.o: $(ARBHOME)/INCLUDE/cbtypes.h
1332ED4_tools.o: $(ARBHOME)/INCLUDE/chartable.h
1333ED4_tools.o: $(ARBHOME)/INCLUDE/cxxforward.h
1334ED4_tools.o: $(ARBHOME)/INCLUDE/downcast.h
1335ED4_tools.o: $(ARBHOME)/INCLUDE/dupstr.h
1336ED4_tools.o: $(ARBHOME)/INCLUDE/gccver.h
1337ED4_tools.o: $(ARBHOME)/INCLUDE/pos_range.h
1338ED4_tools.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1339ED4_tools.o: $(ARBHOME)/INCLUDE/smartptr.h
1340ED4_tools.o: $(ARBHOME)/INCLUDE/static_assert.h
1341ED4_tools.o: $(ARBHOME)/INCLUDE/test_global.h
1342ED4_tools.o: $(ARBHOME)/INCLUDE/ttypes.h
1343
1344ED4_visualizeSAI.o: ed4_class.hxx
1345ED4_visualizeSAI.o: ed4_defs.hxx
1346ED4_visualizeSAI.o: ed4_extern.hxx
1347ED4_visualizeSAI.o: ed4_search.hxx
1348ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_cb.h
1349ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
1350ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ad_colorset.h
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
1354ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_core.h
1355ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_error.h
1356ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_mem.h
1357ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_msg.h
1358ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1359ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
1360ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arb_string.h
1361ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdb.h
1362ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1363ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbdbt.h
1364ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/arbtools.h
1365ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/attributes.h
1366ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1367ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1368ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
1369ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1370ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1371ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1372ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
1373ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1374ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1375ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1376ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1377ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1378ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
1379ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_question.hxx
1380ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1381ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
1382ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_select.hxx
1383ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1384ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
1385ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_prompt.hxx
1386ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
1387ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1388ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cb.h
1389ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cb_base.h
1390ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cbtypes.h
1391ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/chartable.h
1392ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/cxxforward.h
1393ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/downcast.h
1394ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/dupstr.h
1395ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/gccver.h
1396ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/pos_range.h
1397ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1398ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/smartptr.h
1399ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/static_assert.h
1400ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/test_global.h
1401ED4_visualizeSAI.o: $(ARBHOME)/INCLUDE/ttypes.h
1402
1403ED4_window.o: ed4_class.hxx
1404ED4_window.o: ed4_defs.hxx
1405ED4_window.o: ed4_extern.hxx
1406ED4_window.o: ed4_search.hxx
1407ED4_window.o: ed4_tools.hxx
1408ED4_window.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1409ED4_window.o: $(ARBHOME)/INCLUDE/ad_prot.h
1410ED4_window.o: $(ARBHOME)/INCLUDE/arb_assert.h
1411ED4_window.o: $(ARBHOME)/INCLUDE/arb_core.h
1412ED4_window.o: $(ARBHOME)/INCLUDE/arb_error.h
1413ED4_window.o: $(ARBHOME)/INCLUDE/arb_mem.h
1414ED4_window.o: $(ARBHOME)/INCLUDE/arb_msg.h
1415ED4_window.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1416ED4_window.o: $(ARBHOME)/INCLUDE/arb_string.h
1417ED4_window.o: $(ARBHOME)/INCLUDE/arbdb.h
1418ED4_window.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1419ED4_window.o: $(ARBHOME)/INCLUDE/arbtools.h
1420ED4_window.o: $(ARBHOME)/INCLUDE/attributes.h
1421ED4_window.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1422ED4_window.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1423ED4_window.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1424ED4_window.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1425ED4_window.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1426ED4_window.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1427ED4_window.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1428ED4_window.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1429ED4_window.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1430ED4_window.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1431ED4_window.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1432ED4_window.o: $(ARBHOME)/INCLUDE/cb.h
1433ED4_window.o: $(ARBHOME)/INCLUDE/cb_base.h
1434ED4_window.o: $(ARBHOME)/INCLUDE/cbtypes.h
1435ED4_window.o: $(ARBHOME)/INCLUDE/chartable.h
1436ED4_window.o: $(ARBHOME)/INCLUDE/cxxforward.h
1437ED4_window.o: $(ARBHOME)/INCLUDE/downcast.h
1438ED4_window.o: $(ARBHOME)/INCLUDE/dupstr.h
1439ED4_window.o: $(ARBHOME)/INCLUDE/gccver.h
1440ED4_window.o: $(ARBHOME)/INCLUDE/pos_range.h
1441ED4_window.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1442ED4_window.o: $(ARBHOME)/INCLUDE/smartptr.h
1443ED4_window.o: $(ARBHOME)/INCLUDE/static_assert.h
1444ED4_window.o: $(ARBHOME)/INCLUDE/test_global.h
1445ED4_window.o: $(ARBHOME)/INCLUDE/ttypes.h
1446
1447EDB_root_bact.o: ed4_class.hxx
1448EDB_root_bact.o: ed4_defs.hxx
1449EDB_root_bact.o: ed4_extern.hxx
1450EDB_root_bact.o: ed4_search.hxx
1451EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1452EDB_root_bact.o: $(ARBHOME)/INCLUDE/ad_config.h
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
1456EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_core.h
1457EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_error.h
1458EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_mem.h
1459EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_msg.h
1460EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_progress.h
1461EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1462EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
1463EDB_root_bact.o: $(ARBHOME)/INCLUDE/arb_string.h
1464EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdb.h
1465EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1466EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbdbt.h
1467EDB_root_bact.o: $(ARBHOME)/INCLUDE/arbtools.h
1468EDB_root_bact.o: $(ARBHOME)/INCLUDE/attributes.h
1469EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1470EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1471EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_device.hxx
1472EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
1473EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
1474EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1475EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1476EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1477EDB_root_bact.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1478EDB_root_bact.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
1479EDB_root_bact.o: $(ARBHOME)/INCLUDE/cb.h
1480EDB_root_bact.o: $(ARBHOME)/INCLUDE/cb_base.h
1481EDB_root_bact.o: $(ARBHOME)/INCLUDE/cbtypes.h
1482EDB_root_bact.o: $(ARBHOME)/INCLUDE/chartable.h
1483EDB_root_bact.o: $(ARBHOME)/INCLUDE/cxxforward.h
1484EDB_root_bact.o: $(ARBHOME)/INCLUDE/downcast.h
1485EDB_root_bact.o: $(ARBHOME)/INCLUDE/dupstr.h
1486EDB_root_bact.o: $(ARBHOME)/INCLUDE/gccver.h
1487EDB_root_bact.o: $(ARBHOME)/INCLUDE/pos_range.h
1488EDB_root_bact.o: $(ARBHOME)/INCLUDE/sized_cstr.h
1489EDB_root_bact.o: $(ARBHOME)/INCLUDE/smartptr.h
1490EDB_root_bact.o: $(ARBHOME)/INCLUDE/static_assert.h
1491EDB_root_bact.o: $(ARBHOME)/INCLUDE/test_global.h
1492EDB_root_bact.o: $(ARBHOME)/INCLUDE/ttypes.h
1493
1494graph_aligner_gui.o: ed4_defs.hxx
1495graph_aligner_gui.o: graph_aligner_gui.hxx
1496graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_colorset.h
1497graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_prot.h
1498graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
1499graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aisc_global.h
1500graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_assert.h
1501graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_core.h
1502graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_error.h
1503graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_mem.h
1504graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_misc.h
1505graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_msg.h
1506graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_strarray.h
1507graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
1508graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arb_string.h
1509graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdb.h
1510graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdb_base.h
1511graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbdbt.h
1512graph_aligner_gui.o: $(ARBHOME)/INCLUDE/arbtools.h
1513graph_aligner_gui.o: $(ARBHOME)/INCLUDE/attributes.h
1514graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
1515graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
1516graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
1517graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_base.hxx
1518graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
1519graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
1520graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
1521graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_position.hxx
1522graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_root.hxx
1523graph_aligner_gui.o: $(ARBHOME)/INCLUDE/aw_window.hxx
1524graph_aligner_gui.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
1525graph_aligner_gui.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
1526graph_aligner_gui.o: $(ARBHOME)/INCLUDE/bytestring.h
1527graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cb.h
1528graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cb_base.h
1529graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cbtypes.h
1530graph_aligner_gui.o: $(ARBHOME)/INCLUDE/client.h
1531graph_aligner_gui.o: $(ARBHOME)/INCLUDE/client_types.h
1532graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
1533graph_aligner_gui.o: $(ARBHOME)/INCLUDE/cxxforward.h
1534graph_aligner_gui.o: $(ARBHOME)/INCLUDE/downcast.h
1535graph_aligner_gui.o: $(ARBHOME)/INCLUDE/dupstr.h
1536graph_aligner_gui.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
1537graph_aligner_gui.o: $(ARBHOME)/INCLUDE/gccver.h
1538graph_aligner_gui.o: $(ARBHOME)/INCLUDE/pos_range.h
1539graph_aligner_gui.o: $(ARBHOME)/INCLUDE/PT_com.h
1540graph_aligner_gui.o: $(ARBHOME)/INCLUDE/servercntrl.h
1541graph_aligner_gui.o: $(ARBHOME)/INCLUDE/smartptr.h
1542graph_aligner_gui.o: $(ARBHOME)/INCLUDE/static_assert.h
1543graph_aligner_gui.o: $(ARBHOME)/INCLUDE/test_global.h
1544graph_aligner_gui.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.