source: branches/stable/EDIT4/Makefile

Last change on this file was 17944, checked in by westram, 5 years ago
  • FIXES crash in RELEASE version (when invalid color group occurs in database).
  • add assertions against
    • invalid color_groups and
    • invalid unshaded GCs.
  • ARBDB color-group interface:
    • define number of allowed color groups in ARBDB
    • fix interface types (long→int)
    • report error when color_group passed to GBT_set_color_group is out-of-range.
    • GBT_get_color_group does range check. returns 0 if out-of-range.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 66.7 KB
Line 
1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5SOURCES=$(wildcard *.cxx)
6OBJECTS=$(subst .cxx,.o,$(SOURCES))
7
8$(MAIN): $(OBJECTS)
9        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
10
11.cxx.o:
12        $(A_CXX) $(cflags) $(cxxflags) -c -o $@ $(@:.o=.cxx)  $(CXX_INCLUDES) $(POST_COMPILE) $<
13
14clean:
15        rm -f $(OBJECTS) *.a
16
17DEPENDS = $(OBJECTS:.o=.depend)
18depends: $(DEPENDS)
19        @cat $(DEPENDS) | grep -v '^#' >>Makefile
20        @rm $(DEPENDS)
21$(DEPENDS): depend.init
22depend.init:
23        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
24.c.depend:
25        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
26.cxx.depend:
27        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
28
29# DO NOT DELETE THIS LINE -- make depend depends on it.
30
31# Do not add dependencies manually - use 'make depend' in $ARBHOME
32# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
33
34ED4_base.o: ed4_awars.hxx
35ED4_base.o: ed4_class.hxx
36ED4_base.o: ed4_defs.hxx
37ED4_base.o: ed4_edit_string.hxx
38ED4_base.o: ed4_extern.hxx
39ED4_base.o: ed4_list.hxx
40ED4_base.o: ed4_search.hxx
41ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb.h
42ED4_base.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
43ED4_base.o: $(ARBHOME)/INCLUDE/ad_colorset.h
44ED4_base.o: $(ARBHOME)/INCLUDE/ad_prot.h
45ED4_base.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
46ED4_base.o: $(ARBHOME)/INCLUDE/arb_assert.h
47ED4_base.o: $(ARBHOME)/INCLUDE/arb_core.h
48ED4_base.o: $(ARBHOME)/INCLUDE/arb_error.h
49ED4_base.o: $(ARBHOME)/INCLUDE/arb_mem.h
50ED4_base.o: $(ARBHOME)/INCLUDE/arb_msg.h
51ED4_base.o: $(ARBHOME)/INCLUDE/arb_progress.h
52ED4_base.o: $(ARBHOME)/INCLUDE/arb_strarray.h
53ED4_base.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
54ED4_base.o: $(ARBHOME)/INCLUDE/arb_string.h
55ED4_base.o: $(ARBHOME)/INCLUDE/arbdb.h
56ED4_base.o: $(ARBHOME)/INCLUDE/arbdb_base.h
57ED4_base.o: $(ARBHOME)/INCLUDE/arbdbt.h
58ED4_base.o: $(ARBHOME)/INCLUDE/arbtools.h
59ED4_base.o: $(ARBHOME)/INCLUDE/attributes.h
60ED4_base.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
61ED4_base.o: $(ARBHOME)/INCLUDE/aw_base.hxx
62ED4_base.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
63ED4_base.o: $(ARBHOME)/INCLUDE/aw_device.hxx
64ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
65ED4_base.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
66ED4_base.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
67ED4_base.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
68ED4_base.o: $(ARBHOME)/INCLUDE/aw_position.hxx
69ED4_base.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
70ED4_base.o: $(ARBHOME)/INCLUDE/aw_question.hxx
71ED4_base.o: $(ARBHOME)/INCLUDE/aw_root.hxx
72ED4_base.o: $(ARBHOME)/INCLUDE/aw_window.hxx
73ED4_base.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
74ED4_base.o: $(ARBHOME)/INCLUDE/cb.h
75ED4_base.o: $(ARBHOME)/INCLUDE/cb_base.h
76ED4_base.o: $(ARBHOME)/INCLUDE/cbtypes.h
77ED4_base.o: $(ARBHOME)/INCLUDE/chartable.h
78ED4_base.o: $(ARBHOME)/INCLUDE/cxxforward.h
79ED4_base.o: $(ARBHOME)/INCLUDE/downcast.h
80ED4_base.o: $(ARBHOME)/INCLUDE/dupstr.h
81ED4_base.o: $(ARBHOME)/INCLUDE/gccver.h
82ED4_base.o: $(ARBHOME)/INCLUDE/pos_range.h
83ED4_base.o: $(ARBHOME)/INCLUDE/sized_cstr.h
84ED4_base.o: $(ARBHOME)/INCLUDE/smartptr.h
85ED4_base.o: $(ARBHOME)/INCLUDE/static_assert.h
86ED4_base.o: $(ARBHOME)/INCLUDE/test_global.h
87ED4_base.o: $(ARBHOME)/INCLUDE/ttypes.h
88
89ED4_block.o: ed4_awars.hxx
90ED4_block.o: ed4_block.hxx
91ED4_block.o: ed4_class.hxx
92ED4_block.o: ed4_defs.hxx
93ED4_block.o: ed4_edit_string.hxx
94ED4_block.o: ed4_list.hxx
95ED4_block.o: ed4_search.hxx
96ED4_block.o: ed4_tools.hxx
97ED4_block.o: $(ARBHOME)/INCLUDE/ad_colorset.h
98ED4_block.o: $(ARBHOME)/INCLUDE/ad_prot.h
99ED4_block.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
100ED4_block.o: $(ARBHOME)/INCLUDE/arb_assert.h
101ED4_block.o: $(ARBHOME)/INCLUDE/arb_core.h
102ED4_block.o: $(ARBHOME)/INCLUDE/arb_error.h
103ED4_block.o: $(ARBHOME)/INCLUDE/arb_mem.h
104ED4_block.o: $(ARBHOME)/INCLUDE/arb_msg.h
105ED4_block.o: $(ARBHOME)/INCLUDE/arb_str.h
106ED4_block.o: $(ARBHOME)/INCLUDE/arb_strarray.h
107ED4_block.o: $(ARBHOME)/INCLUDE/arb_string.h
108ED4_block.o: $(ARBHOME)/INCLUDE/arbdb.h
109ED4_block.o: $(ARBHOME)/INCLUDE/arbdb_base.h
110ED4_block.o: $(ARBHOME)/INCLUDE/arbdbt.h
111ED4_block.o: $(ARBHOME)/INCLUDE/arbtools.h
112ED4_block.o: $(ARBHOME)/INCLUDE/attributes.h
113ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
114ED4_block.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
115ED4_block.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
116ED4_block.o: $(ARBHOME)/INCLUDE/aw_base.hxx
117ED4_block.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
118ED4_block.o: $(ARBHOME)/INCLUDE/aw_device.hxx
119ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
120ED4_block.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
121ED4_block.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
122ED4_block.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
123ED4_block.o: $(ARBHOME)/INCLUDE/aw_position.hxx
124ED4_block.o: $(ARBHOME)/INCLUDE/aw_root.hxx
125ED4_block.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
126ED4_block.o: $(ARBHOME)/INCLUDE/aw_select.hxx
127ED4_block.o: $(ARBHOME)/INCLUDE/aw_window.hxx
128ED4_block.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
129ED4_block.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
130ED4_block.o: $(ARBHOME)/INCLUDE/cb.h
131ED4_block.o: $(ARBHOME)/INCLUDE/cb_base.h
132ED4_block.o: $(ARBHOME)/INCLUDE/cbtypes.h
133ED4_block.o: $(ARBHOME)/INCLUDE/chartable.h
134ED4_block.o: $(ARBHOME)/INCLUDE/cxxforward.h
135ED4_block.o: $(ARBHOME)/INCLUDE/downcast.h
136ED4_block.o: $(ARBHOME)/INCLUDE/dupstr.h
137ED4_block.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
138ED4_block.o: $(ARBHOME)/INCLUDE/gb_aci.h
139ED4_block.o: $(ARBHOME)/INCLUDE/gccver.h
140ED4_block.o: $(ARBHOME)/INCLUDE/pos_range.h
141ED4_block.o: $(ARBHOME)/INCLUDE/sized_cstr.h
142ED4_block.o: $(ARBHOME)/INCLUDE/smartptr.h
143ED4_block.o: $(ARBHOME)/INCLUDE/static_assert.h
144ED4_block.o: $(ARBHOME)/INCLUDE/test_global.h
145ED4_block.o: $(ARBHOME)/INCLUDE/test_unit.h
146ED4_block.o: $(ARBHOME)/INCLUDE/ttypes.h
147
148ED4_colStat.o: ed4_class.hxx
149ED4_colStat.o: ed4_colStat.hxx
150ED4_colStat.o: ed4_defs.hxx
151ED4_colStat.o: ed4_extern.hxx
152ED4_colStat.o: ed4_search.hxx
153ED4_colStat.o: $(ARBHOME)/INCLUDE/ad_colorset.h
154ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_assert.h
155ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_core.h
156ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_error.h
157ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_mem.h
158ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_strarray.h
159ED4_colStat.o: $(ARBHOME)/INCLUDE/arb_string.h
160ED4_colStat.o: $(ARBHOME)/INCLUDE/arbdb_base.h
161ED4_colStat.o: $(ARBHOME)/INCLUDE/arbtools.h
162ED4_colStat.o: $(ARBHOME)/INCLUDE/attributes.h
163ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_base.hxx
164ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
165ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_device.hxx
166ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
167ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
168ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
169ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
170ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_position.hxx
171ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_root.hxx
172ED4_colStat.o: $(ARBHOME)/INCLUDE/aw_window.hxx
173ED4_colStat.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
174ED4_colStat.o: $(ARBHOME)/INCLUDE/cb.h
175ED4_colStat.o: $(ARBHOME)/INCLUDE/cb_base.h
176ED4_colStat.o: $(ARBHOME)/INCLUDE/cbtypes.h
177ED4_colStat.o: $(ARBHOME)/INCLUDE/chartable.h
178ED4_colStat.o: $(ARBHOME)/INCLUDE/cxxforward.h
179ED4_colStat.o: $(ARBHOME)/INCLUDE/downcast.h
180ED4_colStat.o: $(ARBHOME)/INCLUDE/dupstr.h
181ED4_colStat.o: $(ARBHOME)/INCLUDE/gccver.h
182ED4_colStat.o: $(ARBHOME)/INCLUDE/pos_range.h
183ED4_colStat.o: $(ARBHOME)/INCLUDE/sized_cstr.h
184ED4_colStat.o: $(ARBHOME)/INCLUDE/smartptr.h
185ED4_colStat.o: $(ARBHOME)/INCLUDE/st_window.hxx
186ED4_colStat.o: $(ARBHOME)/INCLUDE/static_assert.h
187ED4_colStat.o: $(ARBHOME)/INCLUDE/test_global.h
188ED4_colStat.o: $(ARBHOME)/INCLUDE/ttypes.h
189
190ED4_consensus.o: ed4_awars.hxx
191ED4_consensus.o: ed4_class.hxx
192ED4_consensus.o: ed4_defs.hxx
193ED4_consensus.o: ed4_search.hxx
194ED4_consensus.o: ed4_seq_colors.hxx
195ED4_consensus.o: $(ARBHOME)/INCLUDE/ad_colorset.h
196ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_assert.h
197ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_core.h
198ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_error.h
199ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_mem.h
200ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_strarray.h
201ED4_consensus.o: $(ARBHOME)/INCLUDE/arb_string.h
202ED4_consensus.o: $(ARBHOME)/INCLUDE/arbdb_base.h
203ED4_consensus.o: $(ARBHOME)/INCLUDE/arbtools.h
204ED4_consensus.o: $(ARBHOME)/INCLUDE/attributes.h
205ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
206ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_base.hxx
207ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
208ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_device.hxx
209ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
210ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
211ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
212ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_position.hxx
213ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_root.hxx
214ED4_consensus.o: $(ARBHOME)/INCLUDE/aw_window.hxx
215ED4_consensus.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
216ED4_consensus.o: $(ARBHOME)/INCLUDE/cb.h
217ED4_consensus.o: $(ARBHOME)/INCLUDE/cb_base.h
218ED4_consensus.o: $(ARBHOME)/INCLUDE/cbtypes.h
219ED4_consensus.o: $(ARBHOME)/INCLUDE/chartable.h
220ED4_consensus.o: $(ARBHOME)/INCLUDE/consensus.h
221ED4_consensus.o: $(ARBHOME)/INCLUDE/cxxforward.h
222ED4_consensus.o: $(ARBHOME)/INCLUDE/downcast.h
223ED4_consensus.o: $(ARBHOME)/INCLUDE/dupstr.h
224ED4_consensus.o: $(ARBHOME)/INCLUDE/gccver.h
225ED4_consensus.o: $(ARBHOME)/INCLUDE/pos_range.h
226ED4_consensus.o: $(ARBHOME)/INCLUDE/sized_cstr.h
227ED4_consensus.o: $(ARBHOME)/INCLUDE/smartptr.h
228ED4_consensus.o: $(ARBHOME)/INCLUDE/static_assert.h
229ED4_consensus.o: $(ARBHOME)/INCLUDE/test_global.h
230ED4_consensus.o: $(ARBHOME)/INCLUDE/ttypes.h
231
232ED4_container.o: ed4_class.hxx
233ED4_container.o: ed4_defs.hxx
234ED4_container.o: ed4_search.hxx
235ED4_container.o: $(ARBHOME)/INCLUDE/ad_colorset.h
236ED4_container.o: $(ARBHOME)/INCLUDE/ad_prot.h
237ED4_container.o: $(ARBHOME)/INCLUDE/arb_assert.h
238ED4_container.o: $(ARBHOME)/INCLUDE/arb_core.h
239ED4_container.o: $(ARBHOME)/INCLUDE/arb_error.h
240ED4_container.o: $(ARBHOME)/INCLUDE/arb_mem.h
241ED4_container.o: $(ARBHOME)/INCLUDE/arb_msg.h
242ED4_container.o: $(ARBHOME)/INCLUDE/arb_strarray.h
243ED4_container.o: $(ARBHOME)/INCLUDE/arb_string.h
244ED4_container.o: $(ARBHOME)/INCLUDE/arbdb.h
245ED4_container.o: $(ARBHOME)/INCLUDE/arbdb_base.h
246ED4_container.o: $(ARBHOME)/INCLUDE/arbtools.h
247ED4_container.o: $(ARBHOME)/INCLUDE/attributes.h
248ED4_container.o: $(ARBHOME)/INCLUDE/aw_base.hxx
249ED4_container.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
250ED4_container.o: $(ARBHOME)/INCLUDE/aw_device.hxx
251ED4_container.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
252ED4_container.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
253ED4_container.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
254ED4_container.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
255ED4_container.o: $(ARBHOME)/INCLUDE/aw_position.hxx
256ED4_container.o: $(ARBHOME)/INCLUDE/aw_question.hxx
257ED4_container.o: $(ARBHOME)/INCLUDE/aw_window.hxx
258ED4_container.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
259ED4_container.o: $(ARBHOME)/INCLUDE/cb.h
260ED4_container.o: $(ARBHOME)/INCLUDE/cb_base.h
261ED4_container.o: $(ARBHOME)/INCLUDE/cbtypes.h
262ED4_container.o: $(ARBHOME)/INCLUDE/chartable.h
263ED4_container.o: $(ARBHOME)/INCLUDE/cxxforward.h
264ED4_container.o: $(ARBHOME)/INCLUDE/downcast.h
265ED4_container.o: $(ARBHOME)/INCLUDE/dupstr.h
266ED4_container.o: $(ARBHOME)/INCLUDE/gccver.h
267ED4_container.o: $(ARBHOME)/INCLUDE/pos_range.h
268ED4_container.o: $(ARBHOME)/INCLUDE/sized_cstr.h
269ED4_container.o: $(ARBHOME)/INCLUDE/smartptr.h
270ED4_container.o: $(ARBHOME)/INCLUDE/static_assert.h
271ED4_container.o: $(ARBHOME)/INCLUDE/test_global.h
272ED4_container.o: $(ARBHOME)/INCLUDE/ttypes.h
273
274ED4_cursor.o: ed4_awars.hxx
275ED4_cursor.o: ed4_class.hxx
276ED4_cursor.o: ed4_defs.hxx
277ED4_cursor.o: ed4_edit_string.hxx
278ED4_cursor.o: ed4_extern.hxx
279ED4_cursor.o: ed4_ProteinViewer.hxx
280ED4_cursor.o: ed4_search.hxx
281ED4_cursor.o: ed4_seq_colors.hxx
282ED4_cursor.o: ed4_tools.hxx
283ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_colorset.h
284ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_prot.h
285ED4_cursor.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
286ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_assert.h
287ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_core.h
288ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_defs.h
289ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_error.h
290ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_mem.h
291ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_msg.h
292ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_progress.h
293ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strarray.h
294ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
295ED4_cursor.o: $(ARBHOME)/INCLUDE/arb_string.h
296ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb.h
297ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdb_base.h
298ED4_cursor.o: $(ARBHOME)/INCLUDE/arbdbt.h
299ED4_cursor.o: $(ARBHOME)/INCLUDE/arbtools.h
300ED4_cursor.o: $(ARBHOME)/INCLUDE/attributes.h
301ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
302ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
303ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
304ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_base.hxx
305ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
306ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_device.hxx
307ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
308ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
309ED4_cursor.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
310ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
311ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
312ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_position.hxx
313ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_root.hxx
314ED4_cursor.o: $(ARBHOME)/INCLUDE/aw_window.hxx
315ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
316ED4_cursor.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
317ED4_cursor.o: $(ARBHOME)/INCLUDE/cb.h
318ED4_cursor.o: $(ARBHOME)/INCLUDE/cb_base.h
319ED4_cursor.o: $(ARBHOME)/INCLUDE/cbtypes.h
320ED4_cursor.o: $(ARBHOME)/INCLUDE/chartable.h
321ED4_cursor.o: $(ARBHOME)/INCLUDE/cxxforward.h
322ED4_cursor.o: $(ARBHOME)/INCLUDE/downcast.h
323ED4_cursor.o: $(ARBHOME)/INCLUDE/dupstr.h
324ED4_cursor.o: $(ARBHOME)/INCLUDE/gccver.h
325ED4_cursor.o: $(ARBHOME)/INCLUDE/iupac.h
326ED4_cursor.o: $(ARBHOME)/INCLUDE/pos_range.h
327ED4_cursor.o: $(ARBHOME)/INCLUDE/sized_cstr.h
328ED4_cursor.o: $(ARBHOME)/INCLUDE/smartptr.h
329ED4_cursor.o: $(ARBHOME)/INCLUDE/static_assert.h
330ED4_cursor.o: $(ARBHOME)/INCLUDE/test_global.h
331ED4_cursor.o: $(ARBHOME)/INCLUDE/test_helpers.h
332ED4_cursor.o: $(ARBHOME)/INCLUDE/test_unit.h
333ED4_cursor.o: $(ARBHOME)/INCLUDE/ttypes.h
334
335ED4_dots.o: ed4_class.hxx
336ED4_dots.o: ed4_defs.hxx
337ED4_dots.o: ed4_dots.hxx
338ED4_dots.o: ed4_search.hxx
339ED4_dots.o: $(ARBHOME)/INCLUDE/ad_colorset.h
340ED4_dots.o: $(ARBHOME)/INCLUDE/ad_prot.h
341ED4_dots.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
342ED4_dots.o: $(ARBHOME)/INCLUDE/arb_assert.h
343ED4_dots.o: $(ARBHOME)/INCLUDE/arb_core.h
344ED4_dots.o: $(ARBHOME)/INCLUDE/arb_error.h
345ED4_dots.o: $(ARBHOME)/INCLUDE/arb_mem.h
346ED4_dots.o: $(ARBHOME)/INCLUDE/arb_msg.h
347ED4_dots.o: $(ARBHOME)/INCLUDE/arb_strarray.h
348ED4_dots.o: $(ARBHOME)/INCLUDE/arb_string.h
349ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb.h
350ED4_dots.o: $(ARBHOME)/INCLUDE/arbdb_base.h
351ED4_dots.o: $(ARBHOME)/INCLUDE/arbdbt.h
352ED4_dots.o: $(ARBHOME)/INCLUDE/arbtools.h
353ED4_dots.o: $(ARBHOME)/INCLUDE/attributes.h
354ED4_dots.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
355ED4_dots.o: $(ARBHOME)/INCLUDE/aw_base.hxx
356ED4_dots.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
357ED4_dots.o: $(ARBHOME)/INCLUDE/aw_device.hxx
358ED4_dots.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
359ED4_dots.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
360ED4_dots.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
361ED4_dots.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
362ED4_dots.o: $(ARBHOME)/INCLUDE/aw_position.hxx
363ED4_dots.o: $(ARBHOME)/INCLUDE/aw_root.hxx
364ED4_dots.o: $(ARBHOME)/INCLUDE/aw_window.hxx
365ED4_dots.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
366ED4_dots.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
367ED4_dots.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
368ED4_dots.o: $(ARBHOME)/INCLUDE/cb.h
369ED4_dots.o: $(ARBHOME)/INCLUDE/cb_base.h
370ED4_dots.o: $(ARBHOME)/INCLUDE/cbtypes.h
371ED4_dots.o: $(ARBHOME)/INCLUDE/chartable.h
372ED4_dots.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
373ED4_dots.o: $(ARBHOME)/INCLUDE/cxxforward.h
374ED4_dots.o: $(ARBHOME)/INCLUDE/downcast.h
375ED4_dots.o: $(ARBHOME)/INCLUDE/dupstr.h
376ED4_dots.o: $(ARBHOME)/INCLUDE/gccver.h
377ED4_dots.o: $(ARBHOME)/INCLUDE/pos_range.h
378ED4_dots.o: $(ARBHOME)/INCLUDE/sized_cstr.h
379ED4_dots.o: $(ARBHOME)/INCLUDE/smartptr.h
380ED4_dots.o: $(ARBHOME)/INCLUDE/static_assert.h
381ED4_dots.o: $(ARBHOME)/INCLUDE/test_global.h
382ED4_dots.o: $(ARBHOME)/INCLUDE/ttypes.h
383
384ED4_dump.o: ed4_class.hxx
385ED4_dump.o: ed4_defs.hxx
386ED4_dump.o: ed4_search.hxx
387ED4_dump.o: $(ARBHOME)/INCLUDE/ad_colorset.h
388ED4_dump.o: $(ARBHOME)/INCLUDE/ad_prot.h
389ED4_dump.o: $(ARBHOME)/INCLUDE/arb_assert.h
390ED4_dump.o: $(ARBHOME)/INCLUDE/arb_core.h
391ED4_dump.o: $(ARBHOME)/INCLUDE/arb_error.h
392ED4_dump.o: $(ARBHOME)/INCLUDE/arb_mem.h
393ED4_dump.o: $(ARBHOME)/INCLUDE/arb_msg.h
394ED4_dump.o: $(ARBHOME)/INCLUDE/arb_strarray.h
395ED4_dump.o: $(ARBHOME)/INCLUDE/arb_string.h
396ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb.h
397ED4_dump.o: $(ARBHOME)/INCLUDE/arbdb_base.h
398ED4_dump.o: $(ARBHOME)/INCLUDE/arbtools.h
399ED4_dump.o: $(ARBHOME)/INCLUDE/attributes.h
400ED4_dump.o: $(ARBHOME)/INCLUDE/aw_base.hxx
401ED4_dump.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
402ED4_dump.o: $(ARBHOME)/INCLUDE/aw_device.hxx
403ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
404ED4_dump.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
405ED4_dump.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
406ED4_dump.o: $(ARBHOME)/INCLUDE/aw_position.hxx
407ED4_dump.o: $(ARBHOME)/INCLUDE/aw_window.hxx
408ED4_dump.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
409ED4_dump.o: $(ARBHOME)/INCLUDE/cb.h
410ED4_dump.o: $(ARBHOME)/INCLUDE/cb_base.h
411ED4_dump.o: $(ARBHOME)/INCLUDE/cbtypes.h
412ED4_dump.o: $(ARBHOME)/INCLUDE/chartable.h
413ED4_dump.o: $(ARBHOME)/INCLUDE/cxxforward.h
414ED4_dump.o: $(ARBHOME)/INCLUDE/downcast.h
415ED4_dump.o: $(ARBHOME)/INCLUDE/dupstr.h
416ED4_dump.o: $(ARBHOME)/INCLUDE/gccver.h
417ED4_dump.o: $(ARBHOME)/INCLUDE/pos_range.h
418ED4_dump.o: $(ARBHOME)/INCLUDE/sized_cstr.h
419ED4_dump.o: $(ARBHOME)/INCLUDE/smartptr.h
420ED4_dump.o: $(ARBHOME)/INCLUDE/static_assert.h
421ED4_dump.o: $(ARBHOME)/INCLUDE/test_global.h
422ED4_dump.o: $(ARBHOME)/INCLUDE/ttypes.h
423
424ED4_edit_string.o: ed4_awars.hxx
425ED4_edit_string.o: ed4_class.hxx
426ED4_edit_string.o: ed4_defs.hxx
427ED4_edit_string.o: ed4_edit_string.hxx
428ED4_edit_string.o: ed4_search.hxx
429ED4_edit_string.o: ed4_seq_colors.hxx
430ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_colorset.h
431ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_prot.h
432ED4_edit_string.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
433ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_assert.h
434ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_core.h
435ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_error.h
436ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_mem.h
437ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_msg.h
438ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_strarray.h
439ED4_edit_string.o: $(ARBHOME)/INCLUDE/arb_string.h
440ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb.h
441ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdb_base.h
442ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbdbt.h
443ED4_edit_string.o: $(ARBHOME)/INCLUDE/arbtools.h
444ED4_edit_string.o: $(ARBHOME)/INCLUDE/attributes.h
445ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
446ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
447ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_base.hxx
448ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
449ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_device.hxx
450ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
451ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
452ED4_edit_string.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
453ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
454ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
455ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_position.hxx
456ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_question.hxx
457ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_root.hxx
458ED4_edit_string.o: $(ARBHOME)/INCLUDE/aw_window.hxx
459ED4_edit_string.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
460ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
461ED4_edit_string.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
462ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb.h
463ED4_edit_string.o: $(ARBHOME)/INCLUDE/cb_base.h
464ED4_edit_string.o: $(ARBHOME)/INCLUDE/cbtypes.h
465ED4_edit_string.o: $(ARBHOME)/INCLUDE/chartable.h
466ED4_edit_string.o: $(ARBHOME)/INCLUDE/cxxforward.h
467ED4_edit_string.o: $(ARBHOME)/INCLUDE/downcast.h
468ED4_edit_string.o: $(ARBHOME)/INCLUDE/dupstr.h
469ED4_edit_string.o: $(ARBHOME)/INCLUDE/fast_aligner.hxx
470ED4_edit_string.o: $(ARBHOME)/INCLUDE/gccver.h
471ED4_edit_string.o: $(ARBHOME)/INCLUDE/pos_range.h
472ED4_edit_string.o: $(ARBHOME)/INCLUDE/sized_cstr.h
473ED4_edit_string.o: $(ARBHOME)/INCLUDE/smartptr.h
474ED4_edit_string.o: $(ARBHOME)/INCLUDE/static_assert.h
475ED4_edit_string.o: $(ARBHOME)/INCLUDE/test_global.h
476ED4_edit_string.o: $(ARBHOME)/INCLUDE/ttypes.h
477
478ED4_flags.o: ed4_class.hxx
479ED4_flags.o: ed4_defs.hxx
480ED4_flags.o: ed4_flags.hxx
481ED4_flags.o: ed4_search.hxx
482ED4_flags.o: $(ARBHOME)/INCLUDE/ad_colorset.h
483ED4_flags.o: $(ARBHOME)/INCLUDE/ad_prot.h
484ED4_flags.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
485ED4_flags.o: $(ARBHOME)/INCLUDE/arb_assert.h
486ED4_flags.o: $(ARBHOME)/INCLUDE/arb_core.h
487ED4_flags.o: $(ARBHOME)/INCLUDE/arb_error.h
488ED4_flags.o: $(ARBHOME)/INCLUDE/arb_mem.h
489ED4_flags.o: $(ARBHOME)/INCLUDE/arb_msg.h
490ED4_flags.o: $(ARBHOME)/INCLUDE/arb_strarray.h
491ED4_flags.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
492ED4_flags.o: $(ARBHOME)/INCLUDE/arb_string.h
493ED4_flags.o: $(ARBHOME)/INCLUDE/arbdb.h
494ED4_flags.o: $(ARBHOME)/INCLUDE/arbdb_base.h
495ED4_flags.o: $(ARBHOME)/INCLUDE/arbdbt.h
496ED4_flags.o: $(ARBHOME)/INCLUDE/arbtools.h
497ED4_flags.o: $(ARBHOME)/INCLUDE/attributes.h
498ED4_flags.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
499ED4_flags.o: $(ARBHOME)/INCLUDE/aw_base.hxx
500ED4_flags.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
501ED4_flags.o: $(ARBHOME)/INCLUDE/aw_device.hxx
502ED4_flags.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
503ED4_flags.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
504ED4_flags.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
505ED4_flags.o: $(ARBHOME)/INCLUDE/aw_position.hxx
506ED4_flags.o: $(ARBHOME)/INCLUDE/aw_root.hxx
507ED4_flags.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
508ED4_flags.o: $(ARBHOME)/INCLUDE/aw_select.hxx
509ED4_flags.o: $(ARBHOME)/INCLUDE/aw_window.hxx
510ED4_flags.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
511ED4_flags.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
512ED4_flags.o: $(ARBHOME)/INCLUDE/cb.h
513ED4_flags.o: $(ARBHOME)/INCLUDE/cb_base.h
514ED4_flags.o: $(ARBHOME)/INCLUDE/cbtypes.h
515ED4_flags.o: $(ARBHOME)/INCLUDE/chartable.h
516ED4_flags.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
517ED4_flags.o: $(ARBHOME)/INCLUDE/cxxforward.h
518ED4_flags.o: $(ARBHOME)/INCLUDE/downcast.h
519ED4_flags.o: $(ARBHOME)/INCLUDE/dupstr.h
520ED4_flags.o: $(ARBHOME)/INCLUDE/gccver.h
521ED4_flags.o: $(ARBHOME)/INCLUDE/item_sel_list.h
522ED4_flags.o: $(ARBHOME)/INCLUDE/items.h
523ED4_flags.o: $(ARBHOME)/INCLUDE/pos_range.h
524ED4_flags.o: $(ARBHOME)/INCLUDE/sized_cstr.h
525ED4_flags.o: $(ARBHOME)/INCLUDE/smartptr.h
526ED4_flags.o: $(ARBHOME)/INCLUDE/static_assert.h
527ED4_flags.o: $(ARBHOME)/INCLUDE/test_global.h
528ED4_flags.o: $(ARBHOME)/INCLUDE/ttypes.h
529
530ED4_main.o: ed4_awars.hxx
531ED4_main.o: ed4_class.hxx
532ED4_main.o: ed4_defs.hxx
533ED4_main.o: ed4_dots.hxx
534ED4_main.o: ed4_edit_string.hxx
535ED4_main.o: ed4_extern.hxx
536ED4_main.o: ed4_naligner.hxx
537ED4_main.o: ed4_nds.hxx
538ED4_main.o: ed4_protein_2nd_structure.hxx
539ED4_main.o: ed4_ProteinViewer.hxx
540ED4_main.o: ed4_search.hxx
541ED4_main.o: ed4_seq_colors.hxx
542ED4_main.o: ed4_visualizeSAI.hxx
543ED4_main.o: graph_aligner_gui.hxx
544ED4_main.o: $(ARBHOME)/INCLUDE/ad_colorset.h
545ED4_main.o: $(ARBHOME)/INCLUDE/ad_config.h
546ED4_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
547ED4_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
548ED4_main.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
549ED4_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
550ED4_main.o: $(ARBHOME)/INCLUDE/arb_core.h
551ED4_main.o: $(ARBHOME)/INCLUDE/arb_defs.h
552ED4_main.o: $(ARBHOME)/INCLUDE/arb_error.h
553ED4_main.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
554ED4_main.o: $(ARBHOME)/INCLUDE/arb_mem.h
555ED4_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
556ED4_main.o: $(ARBHOME)/INCLUDE/arb_strarray.h
557ED4_main.o: $(ARBHOME)/INCLUDE/arb_string.h
558ED4_main.o: $(ARBHOME)/INCLUDE/arbdb.h
559ED4_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
560ED4_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
561ED4_main.o: $(ARBHOME)/INCLUDE/arbtools.h
562ED4_main.o: $(ARBHOME)/INCLUDE/attributes.h
563ED4_main.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
564ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
565ED4_main.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
566ED4_main.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
567ED4_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
568ED4_main.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
569ED4_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx
570ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
571ED4_main.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
572ED4_main.o: $(ARBHOME)/INCLUDE/AW_helix.hxx
573ED4_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
574ED4_main.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
575ED4_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx
576ED4_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
577ED4_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
578ED4_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
579ED4_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
580ED4_main.o: $(ARBHOME)/INCLUDE/awt.hxx
581ED4_main.o: $(ARBHOME)/INCLUDE/awt_map_key.hxx
582ED4_main.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
583ED4_main.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
584ED4_main.o: $(ARBHOME)/INCLUDE/cb.h
585ED4_main.o: $(ARBHOME)/INCLUDE/cb_base.h
586ED4_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
587ED4_main.o: $(ARBHOME)/INCLUDE/chartable.h
588ED4_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
589ED4_main.o: $(ARBHOME)/INCLUDE/downcast.h
590ED4_main.o: $(ARBHOME)/INCLUDE/dupstr.h
591ED4_main.o: $(ARBHOME)/INCLUDE/gccver.h
592ED4_main.o: $(ARBHOME)/INCLUDE/gde.hxx
593ED4_main.o: $(ARBHOME)/INCLUDE/macros.hxx
594ED4_main.o: $(ARBHOME)/INCLUDE/pos_range.h
595ED4_main.o: $(ARBHOME)/INCLUDE/sized_cstr.h
596ED4_main.o: $(ARBHOME)/INCLUDE/smartptr.h
597ED4_main.o: $(ARBHOME)/INCLUDE/st_window.hxx
598ED4_main.o: $(ARBHOME)/INCLUDE/static_assert.h
599ED4_main.o: $(ARBHOME)/INCLUDE/test_global.h
600ED4_main.o: $(ARBHOME)/INCLUDE/ttypes.h
601
602ED4_manager.o: ed4_awars.hxx
603ED4_manager.o: ed4_class.hxx
604ED4_manager.o: ed4_defs.hxx
605ED4_manager.o: ed4_edit_string.hxx
606ED4_manager.o: ed4_list.hxx
607ED4_manager.o: ed4_protein_2nd_structure.hxx
608ED4_manager.o: ed4_ProteinViewer.hxx
609ED4_manager.o: ed4_search.hxx
610ED4_manager.o: ed4_seq_colors.hxx
611ED4_manager.o: ed4_tools.hxx
612ED4_manager.o: $(ARBHOME)/INCLUDE/ad_colorset.h
613ED4_manager.o: $(ARBHOME)/INCLUDE/ad_prot.h
614ED4_manager.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
615ED4_manager.o: $(ARBHOME)/INCLUDE/arb_assert.h
616ED4_manager.o: $(ARBHOME)/INCLUDE/arb_core.h
617ED4_manager.o: $(ARBHOME)/INCLUDE/arb_error.h
618ED4_manager.o: $(ARBHOME)/INCLUDE/arb_mem.h
619ED4_manager.o: $(ARBHOME)/INCLUDE/arb_msg.h
620ED4_manager.o: $(ARBHOME)/INCLUDE/arb_strarray.h
621ED4_manager.o: $(ARBHOME)/INCLUDE/arb_string.h
622ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb.h
623ED4_manager.o: $(ARBHOME)/INCLUDE/arbdb_base.h
624ED4_manager.o: $(ARBHOME)/INCLUDE/arbdbt.h
625ED4_manager.o: $(ARBHOME)/INCLUDE/arbtools.h
626ED4_manager.o: $(ARBHOME)/INCLUDE/attributes.h
627ED4_manager.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
628ED4_manager.o: $(ARBHOME)/INCLUDE/aw_base.hxx
629ED4_manager.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
630ED4_manager.o: $(ARBHOME)/INCLUDE/aw_device.hxx
631ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
632ED4_manager.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
633ED4_manager.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
634ED4_manager.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
635ED4_manager.o: $(ARBHOME)/INCLUDE/aw_position.hxx
636ED4_manager.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
637ED4_manager.o: $(ARBHOME)/INCLUDE/aw_root.hxx
638ED4_manager.o: $(ARBHOME)/INCLUDE/aw_window.hxx
639ED4_manager.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
640ED4_manager.o: $(ARBHOME)/INCLUDE/cb.h
641ED4_manager.o: $(ARBHOME)/INCLUDE/cb_base.h
642ED4_manager.o: $(ARBHOME)/INCLUDE/cbtypes.h
643ED4_manager.o: $(ARBHOME)/INCLUDE/chartable.h
644ED4_manager.o: $(ARBHOME)/INCLUDE/cxxforward.h
645ED4_manager.o: $(ARBHOME)/INCLUDE/downcast.h
646ED4_manager.o: $(ARBHOME)/INCLUDE/dupstr.h
647ED4_manager.o: $(ARBHOME)/INCLUDE/gccver.h
648ED4_manager.o: $(ARBHOME)/INCLUDE/pos_range.h
649ED4_manager.o: $(ARBHOME)/INCLUDE/sized_cstr.h
650ED4_manager.o: $(ARBHOME)/INCLUDE/smartptr.h
651ED4_manager.o: $(ARBHOME)/INCLUDE/static_assert.h
652ED4_manager.o: $(ARBHOME)/INCLUDE/test_global.h
653ED4_manager.o: $(ARBHOME)/INCLUDE/ttypes.h
654
655ED4_naligner.o: ed4_naligner.hxx
656ED4_naligner.o: $(ARBHOME)/INCLUDE/ad_prot.h
657ED4_naligner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
658ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_assert.h
659ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_core.h
660ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_error.h
661ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_mem.h
662ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_msg.h
663ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
664ED4_naligner.o: $(ARBHOME)/INCLUDE/arb_string.h
665ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdb.h
666ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
667ED4_naligner.o: $(ARBHOME)/INCLUDE/arbdbt.h
668ED4_naligner.o: $(ARBHOME)/INCLUDE/arbtools.h
669ED4_naligner.o: $(ARBHOME)/INCLUDE/attributes.h
670ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
671ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
672ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
673ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_base.hxx
674ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
675ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_root.hxx
676ED4_naligner.o: $(ARBHOME)/INCLUDE/aw_window.hxx
677ED4_naligner.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
678ED4_naligner.o: $(ARBHOME)/INCLUDE/cb.h
679ED4_naligner.o: $(ARBHOME)/INCLUDE/cb_base.h
680ED4_naligner.o: $(ARBHOME)/INCLUDE/cbtypes.h
681ED4_naligner.o: $(ARBHOME)/INCLUDE/cxxforward.h
682ED4_naligner.o: $(ARBHOME)/INCLUDE/downcast.h
683ED4_naligner.o: $(ARBHOME)/INCLUDE/dupstr.h
684ED4_naligner.o: $(ARBHOME)/INCLUDE/gccver.h
685ED4_naligner.o: $(ARBHOME)/INCLUDE/smartptr.h
686ED4_naligner.o: $(ARBHOME)/INCLUDE/static_assert.h
687ED4_naligner.o: $(ARBHOME)/INCLUDE/test_global.h
688ED4_naligner.o: $(ARBHOME)/INCLUDE/ttypes.h
689
690ED4_nds.o: ed4_awars.hxx
691ED4_nds.o: ed4_class.hxx
692ED4_nds.o: ed4_defs.hxx
693ED4_nds.o: ed4_search.hxx
694ED4_nds.o: $(ARBHOME)/INCLUDE/ad_colorset.h
695ED4_nds.o: $(ARBHOME)/INCLUDE/ad_prot.h
696ED4_nds.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
697ED4_nds.o: $(ARBHOME)/INCLUDE/arb_assert.h
698ED4_nds.o: $(ARBHOME)/INCLUDE/arb_core.h
699ED4_nds.o: $(ARBHOME)/INCLUDE/arb_error.h
700ED4_nds.o: $(ARBHOME)/INCLUDE/arb_mem.h
701ED4_nds.o: $(ARBHOME)/INCLUDE/arb_msg.h
702ED4_nds.o: $(ARBHOME)/INCLUDE/arb_str.h
703ED4_nds.o: $(ARBHOME)/INCLUDE/arb_strarray.h
704ED4_nds.o: $(ARBHOME)/INCLUDE/arb_string.h
705ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb.h
706ED4_nds.o: $(ARBHOME)/INCLUDE/arbdb_base.h
707ED4_nds.o: $(ARBHOME)/INCLUDE/arbdbt.h
708ED4_nds.o: $(ARBHOME)/INCLUDE/arbtools.h
709ED4_nds.o: $(ARBHOME)/INCLUDE/attributes.h
710ED4_nds.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
711ED4_nds.o: $(ARBHOME)/INCLUDE/aw_base.hxx
712ED4_nds.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
713ED4_nds.o: $(ARBHOME)/INCLUDE/aw_device.hxx
714ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_group.hxx
715ED4_nds.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
716ED4_nds.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
717ED4_nds.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
718ED4_nds.o: $(ARBHOME)/INCLUDE/aw_position.hxx
719ED4_nds.o: $(ARBHOME)/INCLUDE/aw_root.hxx
720ED4_nds.o: $(ARBHOME)/INCLUDE/aw_window.hxx
721ED4_nds.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
722ED4_nds.o: $(ARBHOME)/INCLUDE/cb.h
723ED4_nds.o: $(ARBHOME)/INCLUDE/cb_base.h
724ED4_nds.o: $(ARBHOME)/INCLUDE/cbtypes.h
725ED4_nds.o: $(ARBHOME)/INCLUDE/chartable.h
726ED4_nds.o: $(ARBHOME)/INCLUDE/cxxforward.h
727ED4_nds.o: $(ARBHOME)/INCLUDE/downcast.h
728ED4_nds.o: $(ARBHOME)/INCLUDE/dupstr.h
729ED4_nds.o: $(ARBHOME)/INCLUDE/gb_aci.h
730ED4_nds.o: $(ARBHOME)/INCLUDE/gccver.h
731ED4_nds.o: $(ARBHOME)/INCLUDE/nds.h
732ED4_nds.o: $(ARBHOME)/INCLUDE/pos_range.h
733ED4_nds.o: $(ARBHOME)/INCLUDE/sized_cstr.h
734ED4_nds.o: $(ARBHOME)/INCLUDE/smartptr.h
735ED4_nds.o: $(ARBHOME)/INCLUDE/static_assert.h
736ED4_nds.o: $(ARBHOME)/INCLUDE/test_global.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.