source: trunk/EDIT4/Makefile @ 17724

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