source: tags/ms_r18q1/AWT/Makefile

Last change on this file was 16961, checked in by westram, 6 years ago
  • partial merge from 'fix' into 'trunk'
    • refactored AW_device text output
      • reduces calls to strlen (using SizedCstr)
      • eliminated/modernized several parameters/functions (esp. in TextOverlayCallbacks)
  • adds: log:branches/fix@16939:16960
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 22.4 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
8LIB_SHARED=../lib/$(MAIN:.a=).$(SHARED_LIB_SUFFIX)
9
10# MAIN contains .a (instead of wanted .so). Translate via do_...-target
11it: do_$(MAIN)
12
13do_AWT.a:
14        @echo "Error: MAIN='$(MAIN)' is set wrong"
15        false
16
17do_libAWT.a: $(LIB_SHARED)
18
19$(LIB_SHARED): $(OBJECTS)
20        $(LINK_SHARED_LIB) $(LIB_SHARED) $(OBJECTS)
21
22.cxx.o:
23        $(A_CXX) $(shared_cflags) $(cflags) $(cxxflags) -c $<  $(CXX_INCLUDES) $(POST_COMPILE) $<
24
25clean:
26        rm -f $(OBJECTS) *.a *.so
27
28DEPENDS = $(OBJECTS:.o=.depend)
29depends: $(DEPENDS)
30        @cat $(DEPENDS) | grep -v '^#' >>Makefile
31        @rm $(DEPENDS)
32$(DEPENDS): depend.init
33depend.init:
34        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
35.cxx.depend:
36        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
37
38# DO NOT DELETE THIS LINE -- make depend depends on it.
39
40# Do not add dependencies manually - use 'make depend' in $ARBHOME
41# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
42
43AWT_asciiprint.o: awt.hxx
44AWT_asciiprint.o: awt_asciiprint.hxx
45AWT_asciiprint.o: $(ARBHOME)/INCLUDE/ad_prot.h
46AWT_asciiprint.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
47AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_assert.h
48AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_core.h
49AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_error.h
50AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_mem.h
51AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_msg.h
52AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arb_string.h
53AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arbdb.h
54AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arbdb_base.h
55AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arbdbt.h
56AWT_asciiprint.o: $(ARBHOME)/INCLUDE/arbtools.h
57AWT_asciiprint.o: $(ARBHOME)/INCLUDE/attributes.h
58AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
59AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_base.hxx
60AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
61AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
62AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_question.hxx
63AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_root.hxx
64AWT_asciiprint.o: $(ARBHOME)/INCLUDE/aw_window.hxx
65AWT_asciiprint.o: $(ARBHOME)/INCLUDE/cb.h
66AWT_asciiprint.o: $(ARBHOME)/INCLUDE/cb_base.h
67AWT_asciiprint.o: $(ARBHOME)/INCLUDE/cbtypes.h
68AWT_asciiprint.o: $(ARBHOME)/INCLUDE/cxxforward.h
69AWT_asciiprint.o: $(ARBHOME)/INCLUDE/downcast.h
70AWT_asciiprint.o: $(ARBHOME)/INCLUDE/dupstr.h
71AWT_asciiprint.o: $(ARBHOME)/INCLUDE/gccver.h
72AWT_asciiprint.o: $(ARBHOME)/INCLUDE/smartptr.h
73AWT_asciiprint.o: $(ARBHOME)/INCLUDE/static_assert.h
74AWT_asciiprint.o: $(ARBHOME)/INCLUDE/test_global.h
75AWT_asciiprint.o: $(ARBHOME)/INCLUDE/ttypes.h
76
77AWT_canio.o: awt_canvas.hxx
78AWT_canio.o: $(ARBHOME)/INCLUDE/ad_prot.h
79AWT_canio.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
80AWT_canio.o: $(ARBHOME)/INCLUDE/arb_assert.h
81AWT_canio.o: $(ARBHOME)/INCLUDE/arb_core.h
82AWT_canio.o: $(ARBHOME)/INCLUDE/arb_defs.h
83AWT_canio.o: $(ARBHOME)/INCLUDE/arb_error.h
84AWT_canio.o: $(ARBHOME)/INCLUDE/arb_file.h
85AWT_canio.o: $(ARBHOME)/INCLUDE/arb_mem.h
86AWT_canio.o: $(ARBHOME)/INCLUDE/arb_msg.h
87AWT_canio.o: $(ARBHOME)/INCLUDE/arb_progress.h
88AWT_canio.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
89AWT_canio.o: $(ARBHOME)/INCLUDE/arb_string.h
90AWT_canio.o: $(ARBHOME)/INCLUDE/arbdb.h
91AWT_canio.o: $(ARBHOME)/INCLUDE/arbdb_base.h
92AWT_canio.o: $(ARBHOME)/INCLUDE/arbdbt.h
93AWT_canio.o: $(ARBHOME)/INCLUDE/arbtools.h
94AWT_canio.o: $(ARBHOME)/INCLUDE/attributes.h
95AWT_canio.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
96AWT_canio.o: $(ARBHOME)/INCLUDE/aw_base.hxx
97AWT_canio.o: $(ARBHOME)/INCLUDE/aw_device.hxx
98AWT_canio.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
99AWT_canio.o: $(ARBHOME)/INCLUDE/aw_file.hxx
100AWT_canio.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
101AWT_canio.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
102AWT_canio.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
103AWT_canio.o: $(ARBHOME)/INCLUDE/aw_position.hxx
104AWT_canio.o: $(ARBHOME)/INCLUDE/aw_root.hxx
105AWT_canio.o: $(ARBHOME)/INCLUDE/aw_window.hxx
106AWT_canio.o: $(ARBHOME)/INCLUDE/cb.h
107AWT_canio.o: $(ARBHOME)/INCLUDE/cb_base.h
108AWT_canio.o: $(ARBHOME)/INCLUDE/cbtypes.h
109AWT_canio.o: $(ARBHOME)/INCLUDE/cxxforward.h
110AWT_canio.o: $(ARBHOME)/INCLUDE/downcast.h
111AWT_canio.o: $(ARBHOME)/INCLUDE/dupstr.h
112AWT_canio.o: $(ARBHOME)/INCLUDE/gccver.h
113AWT_canio.o: $(ARBHOME)/INCLUDE/sized_cstr.h
114AWT_canio.o: $(ARBHOME)/INCLUDE/smartptr.h
115AWT_canio.o: $(ARBHOME)/INCLUDE/static_assert.h
116AWT_canio.o: $(ARBHOME)/INCLUDE/test_global.h
117AWT_canio.o: $(ARBHOME)/INCLUDE/ttypes.h
118
119AWT_canvas.o: awt.hxx
120AWT_canvas.o: awt_canvas.hxx
121AWT_canvas.o: $(ARBHOME)/INCLUDE/ad_prot.h
122AWT_canvas.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
123AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_assert.h
124AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_core.h
125AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_error.h
126AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_mem.h
127AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_msg.h
128AWT_canvas.o: $(ARBHOME)/INCLUDE/arb_string.h
129AWT_canvas.o: $(ARBHOME)/INCLUDE/arbdb.h
130AWT_canvas.o: $(ARBHOME)/INCLUDE/arbdb_base.h
131AWT_canvas.o: $(ARBHOME)/INCLUDE/arbdbt.h
132AWT_canvas.o: $(ARBHOME)/INCLUDE/arbtools.h
133AWT_canvas.o: $(ARBHOME)/INCLUDE/attributes.h
134AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_base.hxx
135AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_device.hxx
136AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
137AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_font_limits.hxx
138AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
139AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
140AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_position.hxx
141AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
142AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_root.hxx
143AWT_canvas.o: $(ARBHOME)/INCLUDE/aw_window.hxx
144AWT_canvas.o: $(ARBHOME)/INCLUDE/cb.h
145AWT_canvas.o: $(ARBHOME)/INCLUDE/cb_base.h
146AWT_canvas.o: $(ARBHOME)/INCLUDE/cbtypes.h
147AWT_canvas.o: $(ARBHOME)/INCLUDE/cxxforward.h
148AWT_canvas.o: $(ARBHOME)/INCLUDE/downcast.h
149AWT_canvas.o: $(ARBHOME)/INCLUDE/dupstr.h
150AWT_canvas.o: $(ARBHOME)/INCLUDE/gccver.h
151AWT_canvas.o: $(ARBHOME)/INCLUDE/sized_cstr.h
152AWT_canvas.o: $(ARBHOME)/INCLUDE/smartptr.h
153AWT_canvas.o: $(ARBHOME)/INCLUDE/static_assert.h
154AWT_canvas.o: $(ARBHOME)/INCLUDE/test_global.h
155AWT_canvas.o: $(ARBHOME)/INCLUDE/ttypes.h
156
157AWT_config_manager.o: awt.hxx
158AWT_config_manager.o: awt_config_manager.hxx
159AWT_config_manager.o: awt_sel_boxes.hxx
160AWT_config_manager.o: $(ARBHOME)/INCLUDE/ad_prot.h
161AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_assert.h
162AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_core.h
163AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_defs.h
164AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_error.h
165AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_mem.h
166AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_msg.h
167AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_str.h
168AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_strarray.h
169AWT_config_manager.o: $(ARBHOME)/INCLUDE/arb_string.h
170AWT_config_manager.o: $(ARBHOME)/INCLUDE/arbdb.h
171AWT_config_manager.o: $(ARBHOME)/INCLUDE/arbdb_base.h
172AWT_config_manager.o: $(ARBHOME)/INCLUDE/arbtools.h
173AWT_config_manager.o: $(ARBHOME)/INCLUDE/attributes.h
174AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
175AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_base.hxx
176AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
177AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
178AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_question.hxx
179AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_root.hxx
180AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
181AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_select.hxx
182AWT_config_manager.o: $(ARBHOME)/INCLUDE/aw_window.hxx
183AWT_config_manager.o: $(ARBHOME)/INCLUDE/cb.h
184AWT_config_manager.o: $(ARBHOME)/INCLUDE/cb_base.h
185AWT_config_manager.o: $(ARBHOME)/INCLUDE/cbtypes.h
186AWT_config_manager.o: $(ARBHOME)/INCLUDE/cxxforward.h
187AWT_config_manager.o: $(ARBHOME)/INCLUDE/dupstr.h
188AWT_config_manager.o: $(ARBHOME)/INCLUDE/gccver.h
189AWT_config_manager.o: $(ARBHOME)/INCLUDE/smartptr.h
190AWT_config_manager.o: $(ARBHOME)/INCLUDE/static_assert.h
191AWT_config_manager.o: $(ARBHOME)/INCLUDE/test_global.h
192AWT_config_manager.o: $(ARBHOME)/INCLUDE/ttypes.h
193
194AWT_db_browser.o: awt.hxx
195AWT_db_browser.o: awt_hexdump.hxx
196AWT_db_browser.o: awt_misc.hxx
197AWT_db_browser.o: $(ARBHOME)/INCLUDE/ad_cb.h
198AWT_db_browser.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
199AWT_db_browser.o: $(ARBHOME)/INCLUDE/ad_prot.h
200AWT_db_browser.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
201AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_assert.h
202AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_core.h
203AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_diff.h
204AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_error.h
205AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_file.h
206AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_mem.h
207AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_misc.h
208AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_msg.h
209AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_sleep.h
210AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_str.h
211AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_strarray.h
212AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
213AWT_db_browser.o: $(ARBHOME)/INCLUDE/arb_string.h
214AWT_db_browser.o: $(ARBHOME)/INCLUDE/arbdb.h
215AWT_db_browser.o: $(ARBHOME)/INCLUDE/arbdb_base.h
216AWT_db_browser.o: $(ARBHOME)/INCLUDE/arbdbt.h
217AWT_db_browser.o: $(ARBHOME)/INCLUDE/arbtools.h
218AWT_db_browser.o: $(ARBHOME)/INCLUDE/attributes.h
219AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
220AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
221AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_base.hxx
222AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
223AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
224AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_root.hxx
225AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
226AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_select.hxx
227AWT_db_browser.o: $(ARBHOME)/INCLUDE/aw_window.hxx
228AWT_db_browser.o: $(ARBHOME)/INCLUDE/cb.h
229AWT_db_browser.o: $(ARBHOME)/INCLUDE/cb_base.h
230AWT_db_browser.o: $(ARBHOME)/INCLUDE/cbtypes.h
231AWT_db_browser.o: $(ARBHOME)/INCLUDE/cxxforward.h
232AWT_db_browser.o: $(ARBHOME)/INCLUDE/downcast.h
233AWT_db_browser.o: $(ARBHOME)/INCLUDE/dupstr.h
234AWT_db_browser.o: $(ARBHOME)/INCLUDE/gccver.h
235AWT_db_browser.o: $(ARBHOME)/INCLUDE/smartptr.h
236AWT_db_browser.o: $(ARBHOME)/INCLUDE/static_assert.h
237AWT_db_browser.o: $(ARBHOME)/INCLUDE/test_global.h
238AWT_db_browser.o: $(ARBHOME)/INCLUDE/ttypes.h
239
240AWT_hexdump.o: awt.hxx
241AWT_hexdump.o: awt_hexdump.hxx
242AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_assert.h
243AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_core.h
244AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_error.h
245AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_mem.h
246AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
247AWT_hexdump.o: $(ARBHOME)/INCLUDE/arb_string.h
248AWT_hexdump.o: $(ARBHOME)/INCLUDE/arbdb_base.h
249AWT_hexdump.o: $(ARBHOME)/INCLUDE/arbtools.h
250AWT_hexdump.o: $(ARBHOME)/INCLUDE/attributes.h
251AWT_hexdump.o: $(ARBHOME)/INCLUDE/aw_base.hxx
252AWT_hexdump.o: $(ARBHOME)/INCLUDE/aw_root.hxx
253AWT_hexdump.o: $(ARBHOME)/INCLUDE/cb.h
254AWT_hexdump.o: $(ARBHOME)/INCLUDE/cb_base.h
255AWT_hexdump.o: $(ARBHOME)/INCLUDE/cbtypes.h
256AWT_hexdump.o: $(ARBHOME)/INCLUDE/cxxforward.h
257AWT_hexdump.o: $(ARBHOME)/INCLUDE/dupstr.h
258AWT_hexdump.o: $(ARBHOME)/INCLUDE/gccver.h
259AWT_hexdump.o: $(ARBHOME)/INCLUDE/smartptr.h
260AWT_hexdump.o: $(ARBHOME)/INCLUDE/static_assert.h
261AWT_hexdump.o: $(ARBHOME)/INCLUDE/test_global.h
262AWT_hexdump.o: $(ARBHOME)/INCLUDE/test_unit.h
263AWT_hexdump.o: $(ARBHOME)/INCLUDE/ttypes.h
264
265AWT_hotkeys.o: awt_hotkeys.hxx
266AWT_hotkeys.o: $(ARBHOME)/INCLUDE/arbtools.h
267AWT_hotkeys.o: $(ARBHOME)/INCLUDE/cxxforward.h
268AWT_hotkeys.o: $(ARBHOME)/INCLUDE/gccver.h
269
270AWT_input_mask.o: awt.hxx
271AWT_input_mask.o: awt_hotkeys.hxx
272AWT_input_mask.o: awt_input_mask.hxx
273AWT_input_mask.o: awt_input_mask_internal.hxx
274AWT_input_mask.o: awt_www.hxx
275AWT_input_mask.o: $(ARBHOME)/INCLUDE/ad_cb.h
276AWT_input_mask.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
277AWT_input_mask.o: $(ARBHOME)/INCLUDE/ad_prot.h
278AWT_input_mask.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
279AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_assert.h
280AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_core.h
281AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_error.h
282AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_file.h
283AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_mem.h
284AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_msg.h
285AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_str.h
286AWT_input_mask.o: $(ARBHOME)/INCLUDE/arb_string.h
287AWT_input_mask.o: $(ARBHOME)/INCLUDE/arbdb.h
288AWT_input_mask.o: $(ARBHOME)/INCLUDE/arbdb_base.h
289AWT_input_mask.o: $(ARBHOME)/INCLUDE/arbdbt.h
290AWT_input_mask.o: $(ARBHOME)/INCLUDE/arbtools.h
291AWT_input_mask.o: $(ARBHOME)/INCLUDE/attributes.h
292AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
293AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_base.hxx
294AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
295AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_file.hxx
296AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_inotify.hxx
297AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
298AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
299AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_question.hxx
300AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_root.hxx
301AWT_input_mask.o: $(ARBHOME)/INCLUDE/aw_window.hxx
302AWT_input_mask.o: $(ARBHOME)/INCLUDE/cb.h
303AWT_input_mask.o: $(ARBHOME)/INCLUDE/cb_base.h
304AWT_input_mask.o: $(ARBHOME)/INCLUDE/cbtypes.h
305AWT_input_mask.o: $(ARBHOME)/INCLUDE/cxxforward.h
306AWT_input_mask.o: $(ARBHOME)/INCLUDE/downcast.h
307AWT_input_mask.o: $(ARBHOME)/INCLUDE/dupstr.h
308AWT_input_mask.o: $(ARBHOME)/INCLUDE/gb_aci.h
309AWT_input_mask.o: $(ARBHOME)/INCLUDE/gccver.h
310AWT_input_mask.o: $(ARBHOME)/INCLUDE/smartptr.h
311AWT_input_mask.o: $(ARBHOME)/INCLUDE/static_assert.h
312AWT_input_mask.o: $(ARBHOME)/INCLUDE/test_global.h
313AWT_input_mask.o: $(ARBHOME)/INCLUDE/ttypes.h
314
315AWT_map_key.o: awt_config_manager.hxx
316AWT_map_key.o: awt_map_key.hxx
317AWT_map_key.o: $(ARBHOME)/INCLUDE/arb_assert.h
318AWT_map_key.o: $(ARBHOME)/INCLUDE/arb_core.h
319AWT_map_key.o: $(ARBHOME)/INCLUDE/arb_error.h
320AWT_map_key.o: $(ARBHOME)/INCLUDE/arb_msg.h
321AWT_map_key.o: $(ARBHOME)/INCLUDE/arbdb_base.h
322AWT_map_key.o: $(ARBHOME)/INCLUDE/arbtools.h
323AWT_map_key.o: $(ARBHOME)/INCLUDE/attributes.h
324AWT_map_key.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
325AWT_map_key.o: $(ARBHOME)/INCLUDE/aw_base.hxx
326AWT_map_key.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
327AWT_map_key.o: $(ARBHOME)/INCLUDE/aw_root.hxx
328AWT_map_key.o: $(ARBHOME)/INCLUDE/aw_window.hxx
329AWT_map_key.o: $(ARBHOME)/INCLUDE/cb.h
330AWT_map_key.o: $(ARBHOME)/INCLUDE/cb_base.h
331AWT_map_key.o: $(ARBHOME)/INCLUDE/cbtypes.h
332AWT_map_key.o: $(ARBHOME)/INCLUDE/cxxforward.h
333AWT_map_key.o: $(ARBHOME)/INCLUDE/dupstr.h
334AWT_map_key.o: $(ARBHOME)/INCLUDE/gccver.h
335AWT_map_key.o: $(ARBHOME)/INCLUDE/smartptr.h
336AWT_map_key.o: $(ARBHOME)/INCLUDE/static_assert.h
337AWT_map_key.o: $(ARBHOME)/INCLUDE/test_global.h
338AWT_map_key.o: $(ARBHOME)/INCLUDE/ttypes.h
339
340AWT_misc.o: awt_misc.hxx
341AWT_misc.o: $(ARBHOME)/INCLUDE/ad_prot.h
342AWT_misc.o: $(ARBHOME)/INCLUDE/arb_assert.h
343AWT_misc.o: $(ARBHOME)/INCLUDE/arb_core.h
344AWT_misc.o: $(ARBHOME)/INCLUDE/arb_error.h
345AWT_misc.o: $(ARBHOME)/INCLUDE/arb_mem.h
346AWT_misc.o: $(ARBHOME)/INCLUDE/arb_msg.h
347AWT_misc.o: $(ARBHOME)/INCLUDE/arb_strarray.h
348AWT_misc.o: $(ARBHOME)/INCLUDE/arb_string.h
349AWT_misc.o: $(ARBHOME)/INCLUDE/arbdb.h
350AWT_misc.o: $(ARBHOME)/INCLUDE/arbdb_base.h
351AWT_misc.o: $(ARBHOME)/INCLUDE/arbtools.h
352AWT_misc.o: $(ARBHOME)/INCLUDE/attributes.h
353AWT_misc.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
354AWT_misc.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
355AWT_misc.o: $(ARBHOME)/INCLUDE/aw_base.hxx
356AWT_misc.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
357AWT_misc.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
358AWT_misc.o: $(ARBHOME)/INCLUDE/aw_root.hxx
359AWT_misc.o: $(ARBHOME)/INCLUDE/aw_window.hxx
360AWT_misc.o: $(ARBHOME)/INCLUDE/cb.h
361AWT_misc.o: $(ARBHOME)/INCLUDE/cb_base.h
362AWT_misc.o: $(ARBHOME)/INCLUDE/cbtypes.h
363AWT_misc.o: $(ARBHOME)/INCLUDE/cxxforward.h
364AWT_misc.o: $(ARBHOME)/INCLUDE/dupstr.h
365AWT_misc.o: $(ARBHOME)/INCLUDE/gccver.h
366AWT_misc.o: $(ARBHOME)/INCLUDE/smartptr.h
367AWT_misc.o: $(ARBHOME)/INCLUDE/static_assert.h
368AWT_misc.o: $(ARBHOME)/INCLUDE/test_global.h
369AWT_misc.o: $(ARBHOME)/INCLUDE/ttypes.h
370
371AWT_modules.o: awt_modules.hxx
372AWT_modules.o: $(ARBHOME)/INCLUDE/arb_assert.h
373AWT_modules.o: $(ARBHOME)/INCLUDE/arb_core.h
374AWT_modules.o: $(ARBHOME)/INCLUDE/arbdb_base.h
375AWT_modules.o: $(ARBHOME)/INCLUDE/arbtools.h
376AWT_modules.o: $(ARBHOME)/INCLUDE/attributes.h
377AWT_modules.o: $(ARBHOME)/INCLUDE/aw_base.hxx
378AWT_modules.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
379AWT_modules.o: $(ARBHOME)/INCLUDE/aw_window.hxx
380AWT_modules.o: $(ARBHOME)/INCLUDE/cb.h
381AWT_modules.o: $(ARBHOME)/INCLUDE/cb_base.h
382AWT_modules.o: $(ARBHOME)/INCLUDE/cbtypes.h
383AWT_modules.o: $(ARBHOME)/INCLUDE/cxxforward.h
384AWT_modules.o: $(ARBHOME)/INCLUDE/dupstr.h
385AWT_modules.o: $(ARBHOME)/INCLUDE/gccver.h
386AWT_modules.o: $(ARBHOME)/INCLUDE/smartptr.h
387AWT_modules.o: $(ARBHOME)/INCLUDE/static_assert.h
388AWT_modules.o: $(ARBHOME)/INCLUDE/test_global.h
389AWT_modules.o: $(ARBHOME)/INCLUDE/ttypes.h
390
391AWT_prompt.o: awt_prompt.hxx
392AWT_prompt.o: $(ARBHOME)/INCLUDE/arb_assert.h
393AWT_prompt.o: $(ARBHOME)/INCLUDE/arb_core.h
394AWT_prompt.o: $(ARBHOME)/INCLUDE/arb_error.h
395AWT_prompt.o: $(ARBHOME)/INCLUDE/arbdb_base.h
396AWT_prompt.o: $(ARBHOME)/INCLUDE/arbtools.h
397AWT_prompt.o: $(ARBHOME)/INCLUDE/attributes.h
398AWT_prompt.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
399AWT_prompt.o: $(ARBHOME)/INCLUDE/aw_base.hxx
400AWT_prompt.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
401AWT_prompt.o: $(ARBHOME)/INCLUDE/aw_root.hxx
402AWT_prompt.o: $(ARBHOME)/INCLUDE/aw_window.hxx
403AWT_prompt.o: $(ARBHOME)/INCLUDE/cb.h
404AWT_prompt.o: $(ARBHOME)/INCLUDE/cb_base.h
405AWT_prompt.o: $(ARBHOME)/INCLUDE/cbtypes.h
406AWT_prompt.o: $(ARBHOME)/INCLUDE/cxxforward.h
407AWT_prompt.o: $(ARBHOME)/INCLUDE/dupstr.h
408AWT_prompt.o: $(ARBHOME)/INCLUDE/gccver.h
409AWT_prompt.o: $(ARBHOME)/INCLUDE/smartptr.h
410AWT_prompt.o: $(ARBHOME)/INCLUDE/static_assert.h
411AWT_prompt.o: $(ARBHOME)/INCLUDE/test_global.h
412AWT_prompt.o: $(ARBHOME)/INCLUDE/ttypes.h
413
414AWT_sel_boxes.o: awt.hxx
415AWT_sel_boxes.o: awt_modules.hxx
416AWT_sel_boxes.o: awt_sel_boxes.hxx
417AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ad_cb.h
418AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
419AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ad_config.h
420AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ad_prot.h
421AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
422AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_assert.h
423AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_core.h
424AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_error.h
425AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_file.h
426AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
427AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_mem.h
428AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_msg.h
429AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_strarray.h
430AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
431AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arb_string.h
432AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arbdb.h
433AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arbdb_base.h
434AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arbdbt.h
435AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/arbtools.h
436AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/attributes.h
437AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
438AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
439AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
440AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_base.hxx
441AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
442AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_file.hxx
443AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_inotify.hxx
444AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
445AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
446AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_root.hxx
447AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
448AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_select.hxx
449AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/aw_window.hxx
450AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h
451AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/cb.h
452AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/cb_base.h
453AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/cbtypes.h
454AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/cxxforward.h
455AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/downcast.h
456AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/dupstr.h
457AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/gccver.h
458AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/item_sel_list.h
459AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/items.h
460AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/smartptr.h
461AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/static_assert.h
462AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/test_global.h
463AWT_sel_boxes.o: $(ARBHOME)/INCLUDE/ttypes.h
464
465AWT_TreeAwars.o: awt_TreeAwars.hxx
466AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/ad_cb.h
467AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
468AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/ad_prot.h
469AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
470AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_assert.h
471AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_core.h
472AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_error.h
473AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
474AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_mem.h
475AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_msg.h
476AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arb_string.h
477AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arbdb.h
478AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arbdb_base.h
479AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arbdbt.h
480AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/arbtools.h
481AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/attributes.h
482AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
483AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/aw_base.hxx
484AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/aw_global_awars.hxx
485AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/aw_root.hxx
486AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/cb.h
487AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/cb_base.h
488AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/cbtypes.h
489AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/cxxforward.h
490AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/downcast.h
491AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/dupstr.h
492AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/gccver.h
493AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/smartptr.h
494AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/static_assert.h
495AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/test_global.h
496AWT_TreeAwars.o: $(ARBHOME)/INCLUDE/ttypes.h
497
498AWT_www.o: awt.hxx
499AWT_www.o: awt_config_manager.hxx
500AWT_www.o: $(ARBHOME)/INCLUDE/ad_prot.h
501AWT_www.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
502AWT_www.o: $(ARBHOME)/INCLUDE/arb_assert.h
503AWT_www.o: $(ARBHOME)/INCLUDE/arb_core.h
504AWT_www.o: $(ARBHOME)/INCLUDE/arb_defs.h
505AWT_www.o: $(ARBHOME)/INCLUDE/arb_error.h
506AWT_www.o: $(ARBHOME)/INCLUDE/arb_mem.h
507AWT_www.o: $(ARBHOME)/INCLUDE/arb_msg.h
508AWT_www.o: $(ARBHOME)/INCLUDE/arb_str.h
509AWT_www.o: $(ARBHOME)/INCLUDE/arb_string.h
510AWT_www.o: $(ARBHOME)/INCLUDE/arbdb.h
511AWT_www.o: $(ARBHOME)/INCLUDE/arbdb_base.h
512AWT_www.o: $(ARBHOME)/INCLUDE/arbdbt.h
513AWT_www.o: $(ARBHOME)/INCLUDE/arbtools.h
514AWT_www.o: $(ARBHOME)/INCLUDE/attributes.h
515AWT_www.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
516AWT_www.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
517AWT_www.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
518AWT_www.o: $(ARBHOME)/INCLUDE/aw_base.hxx
519AWT_www.o: $(ARBHOME)/INCLUDE/aw_global_awars.hxx
520AWT_www.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
521AWT_www.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
522AWT_www.o: $(ARBHOME)/INCLUDE/aw_root.hxx
523AWT_www.o: $(ARBHOME)/INCLUDE/aw_window.hxx
524AWT_www.o: $(ARBHOME)/INCLUDE/cb.h
525AWT_www.o: $(ARBHOME)/INCLUDE/cb_base.h
526AWT_www.o: $(ARBHOME)/INCLUDE/cbtypes.h
527AWT_www.o: $(ARBHOME)/INCLUDE/cxxforward.h
528AWT_www.o: $(ARBHOME)/INCLUDE/downcast.h
529AWT_www.o: $(ARBHOME)/INCLUDE/dupstr.h
530AWT_www.o: $(ARBHOME)/INCLUDE/gb_aci.h
531AWT_www.o: $(ARBHOME)/INCLUDE/gccver.h
532AWT_www.o: $(ARBHOME)/INCLUDE/smartptr.h
533AWT_www.o: $(ARBHOME)/INCLUDE/static_assert.h
534AWT_www.o: $(ARBHOME)/INCLUDE/test_global.h
535AWT_www.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.