~ubuntu-branches/debian/jessie/arb/jessie

« back to all changes in this revision

Viewing changes to DIST/Makefile

  • Committer: Package Import Robot
  • Author(s): Elmar Pruesse, Andreas Tille, Elmar Pruesse
  • Date: 2014-09-02 15:15:06 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140902151506-jihq58b3iz342wif
Tags: 6.0.2-1
[ Andreas Tille ]
* New upstream version
  Closes: #741890
* debian/upstream -> debian/upstream/metadata
* debian/control:
   - Build-Depends: added libglib2.0-dev
   - Depends: added mafft, mrbayes
* debian/rules
   - Add explicite --remove-section=.comment option to manual strip call
* cme fix dpkg-control
* arb-common.dirs: Do not create unneeded lintian dir
* Add turkish debconf translation (thanks for the patch to Mert Dirik
  <mertdirik@gmail.com>)
  Closes: #757497

[ Elmar Pruesse ]
* patches removed:
   - 10_config.makefiles.patch,
     80_no_GL.patch
       removed in favor of creating file from config.makefile.template via 
       sed in debian/control
   - 20_Makefile_main.patch
       merged upstream
   - 21_Makefiles.patch
       no longer needed
   - 30_tmpfile_CVE-2008-5378.patch: 
       merged upstream
   - 50_fix_gcc-4.8.patch:
       merged upstream
   - 40_add_libGLU.patch:
       libGLU not needed for arb_ntree)
   - 60_use_debian_packaged_raxml.patch:
       merged upstream
   - 70_hardening.patch
       merged upstream
   - 72_add_math_lib_to_linker.patch
       does not appear to be needed
* patches added:
   - 10_upstream_r12793__show_db_load_progress:
       backported patch showing progress while ARB is loading a database
       (needed as indicator/splash screen while ARB is launching)
   - 20_upstream_r12794__socket_permissions:
       backported security fix
   - 30_upstream_r12814__desktop_keywords:
       backported add keywords to desktop (fixes lintian warning)
   - 40_upstream_r12815__lintian_spelling:
       backported fix for lintian reported spelling errors
   - 50_private_nameservers
       change configuration to put nameservers into users home dirs
       (avoids need for shared writeable directory)
   - 60_use_debian_phyml
       use phyml from debian package for both interfaces in ARB
* debian/rules:
   - create config.makefile from override_dh_configure target
   - use "make tarfile" in override_dh_install
   - remove extra cleaning not needed for ARB 6
   - use "dh_install --list-missing" to avoid missing files
   - added override_dh_fixperms target
* debian/control:
   - added libarb-dev package
   - Depends: added phyml, xdg-utils
   - Suggests: removed phyml
   - fix lintian duplicate-short-description (new descriptions)
* debian/*.install:
   - "unrolled" confusing globbing to select files
   - pick files from debian/tmp
   - moved all config files to /etc/arb
* debian/arb-common.templates: updated
* scripts:
   - removed arb-add-pt-server
   - launch-wrapper: 
     - only add demo.arb to newly created $ARBUSERDATA
     - pass commandline arguments through bin/arb wrapper
   - preinst: removing old PT server index files on upgrade from 5.5*
   - postinst: set setgid on shared PT dir
* rewrote arb.1 manfile
* added file icon for ARB databases
* using upstream arb_tcp.dat

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
 
1
# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2
2
 
3
3
.SUFFIXES: .o .cxx .depend
4
4
 
5
 
CPP_OBJECTS = DI_mldist.o DI_protdist.o DI_compress_matrix.o DI_view_matrix.o DI_save_matr.o DI_main.o DI_matr.o distanalyse.o
 
5
CPP_OBJECTS = \
 
6
        DI_foundclusters.o \
 
7
        DI_clusters.o \
 
8
        DI_clustertree.o \
 
9
        DI_compress_matrix.o \
 
10
        DI_main.o \
 
11
        DI_matr.o \
 
12
        DI_protdist.o \
 
13
        DI_save_matr.o \
 
14
        DI_view_matrix.o \
 
15
        distanalyse.o \
6
16
 
7
17
$(MAIN): $(CPP_OBJECTS)
8
18
        $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS)
9
19
.cxx.o:
10
 
        $(CPP) $(cflags) -c $<  $(CPPINCLUDES)
 
20
        $(A_CXX) $(cflags) $(cxxflags) -c $<  $(CXX_INCLUDES) $(POST_COMPILE)
11
21
 
12
22
clean:
13
23
        rm -f $(CPP_OBJECTS) *.a
27
37
# DO NOT DELETE THIS LINE -- make depend depends on it.
28
38
 
29
39
# Do not add dependencies manually - use 'make depend' in $ARBHOME
30
 
# For formatting issues see SOURCE_TOOLS/fix_depends.pl
 
40
# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
 
41
 
 
42
DI_clusters.o: di_awars.hxx
 
43
DI_clusters.o: di_clusters.hxx
 
44
DI_clusters.o: di_clustertree.hxx
 
45
DI_clusters.o: di_foundclusters.hxx
 
46
DI_clusters.o: $(ARBHOME)/INCLUDE/ad_prot.h
 
47
DI_clusters.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
48
DI_clusters.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
49
DI_clusters.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
 
50
DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
 
51
DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_protein.hxx
 
52
DI_clusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
53
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
54
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_core.h
 
55
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_error.h
 
56
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
57
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_progress.h
 
58
DI_clusters.o: $(ARBHOME)/INCLUDE/arb_string.h
 
59
DI_clusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
 
60
DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb.h
 
61
DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
 
62
DI_clusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
63
DI_clusters.o: $(ARBHOME)/INCLUDE/arbtools.h
 
64
DI_clusters.o: $(ARBHOME)/INCLUDE/attributes.h
 
65
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
 
66
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
 
67
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
 
68
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
 
69
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
 
70
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
 
71
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_root.hxx
 
72
DI_clusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
 
73
DI_clusters.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
 
74
DI_clusters.o: $(ARBHOME)/INCLUDE/cb.h
 
75
DI_clusters.o: $(ARBHOME)/INCLUDE/cb_base.h
 
76
DI_clusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
77
DI_clusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
78
DI_clusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
 
79
DI_clusters.o: $(ARBHOME)/INCLUDE/downcast.h
 
80
DI_clusters.o: $(ARBHOME)/INCLUDE/dupstr.h
 
81
DI_clusters.o: $(ARBHOME)/INCLUDE/gccver.h
 
82
DI_clusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
 
83
DI_clusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
84
DI_clusters.o: $(ARBHOME)/INCLUDE/smartptr.h
 
85
DI_clusters.o: $(ARBHOME)/INCLUDE/static_assert.h
 
86
DI_clusters.o: $(ARBHOME)/INCLUDE/test_global.h
 
87
DI_clusters.o: $(ARBHOME)/INCLUDE/ttypes.h
 
88
 
 
89
DI_clustertree.o: di_clustertree.hxx
 
90
DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_prot.h
 
91
DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
92
DI_clustertree.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
93
DI_clustertree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
94
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
95
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_core.h
 
96
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_error.h
 
97
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
98
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_progress.h
 
99
DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_string.h
 
100
DI_clustertree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
 
101
DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb.h
 
102
DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
 
103
DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
104
DI_clustertree.o: $(ARBHOME)/INCLUDE/arbtools.h
 
105
DI_clustertree.o: $(ARBHOME)/INCLUDE/attributes.h
 
106
DI_clustertree.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
107
DI_clustertree.o: $(ARBHOME)/INCLUDE/downcast.h
 
108
DI_clustertree.o: $(ARBHOME)/INCLUDE/dupstr.h
 
109
DI_clustertree.o: $(ARBHOME)/INCLUDE/gccver.h
 
110
DI_clustertree.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
111
DI_clustertree.o: $(ARBHOME)/INCLUDE/smartptr.h
 
112
DI_clustertree.o: $(ARBHOME)/INCLUDE/static_assert.h
 
113
DI_clustertree.o: $(ARBHOME)/INCLUDE/test_global.h
31
114
 
32
115
DI_compress_matrix.o: di_matr.hxx
33
 
DI_compress_matrix.o: di_view_matrix.hxx
34
 
DI_compress_matrix.o: dist.hxx
35
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
36
116
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
37
117
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
118
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
119
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
120
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
121
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
122
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
38
123
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
124
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
 
125
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
 
126
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
127
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
 
128
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
39
129
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
40
130
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
41
131
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
132
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
42
133
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
 
134
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
43
135
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
44
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_device.hxx
45
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
46
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_position.hxx
47
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
48
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
49
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
50
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
51
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
52
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
53
 
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
54
 
 
55
 
DI_main.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
 
136
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
137
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
 
138
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
 
139
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
 
140
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
141
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
 
142
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
 
143
DI_compress_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
 
144
 
 
145
DI_foundclusters.o: di_clustertree.hxx
 
146
DI_foundclusters.o: di_foundclusters.hxx
 
147
DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_prot.h
 
148
DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
149
DI_foundclusters.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
150
DI_foundclusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
151
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
152
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_core.h
 
153
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_error.h
 
154
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
155
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_string.h
 
156
DI_foundclusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
 
157
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb.h
 
158
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
 
159
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
160
DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbtools.h
 
161
DI_foundclusters.o: $(ARBHOME)/INCLUDE/attributes.h
 
162
DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
 
163
DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
 
164
DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
 
165
DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_select.hxx
 
166
DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
 
167
DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb.h
 
168
DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb_base.h
 
169
DI_foundclusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
170
DI_foundclusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
171
DI_foundclusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
 
172
DI_foundclusters.o: $(ARBHOME)/INCLUDE/downcast.h
 
173
DI_foundclusters.o: $(ARBHOME)/INCLUDE/dupstr.h
 
174
DI_foundclusters.o: $(ARBHOME)/INCLUDE/gccver.h
 
175
DI_foundclusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
 
176
DI_foundclusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
177
DI_foundclusters.o: $(ARBHOME)/INCLUDE/smartptr.h
 
178
DI_foundclusters.o: $(ARBHOME)/INCLUDE/static_assert.h
 
179
DI_foundclusters.o: $(ARBHOME)/INCLUDE/test_global.h
 
180
DI_foundclusters.o: $(ARBHOME)/INCLUDE/ttypes.h
 
181
 
56
182
DI_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
57
183
DI_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
184
DI_main.o: $(ARBHOME)/INCLUDE/arb_core.h
 
185
DI_main.o: $(ARBHOME)/INCLUDE/arb_error.h
 
186
DI_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
187
DI_main.o: $(ARBHOME)/INCLUDE/arb_string.h
58
188
DI_main.o: $(ARBHOME)/INCLUDE/arbdb.h
59
189
DI_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
 
190
DI_main.o: $(ARBHOME)/INCLUDE/arbtools.h
60
191
DI_main.o: $(ARBHOME)/INCLUDE/attributes.h
 
192
DI_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
61
193
DI_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx
 
194
DI_main.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
62
195
DI_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
 
196
DI_main.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
63
197
DI_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx
64
198
DI_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
 
199
DI_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
65
200
DI_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
66
201
DI_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
67
202
DI_main.o: $(ARBHOME)/INCLUDE/awt.hxx
68
203
DI_main.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
 
204
DI_main.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
 
205
DI_main.o: $(ARBHOME)/INCLUDE/cb.h
 
206
DI_main.o: $(ARBHOME)/INCLUDE/cb_base.h
 
207
DI_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
208
DI_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
209
DI_main.o: $(ARBHOME)/INCLUDE/dupstr.h
 
210
DI_main.o: $(ARBHOME)/INCLUDE/gccver.h
 
211
DI_main.o: $(ARBHOME)/INCLUDE/macros.hxx
69
212
DI_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
 
213
DI_main.o: $(ARBHOME)/INCLUDE/smartptr.h
 
214
DI_main.o: $(ARBHOME)/INCLUDE/static_assert.h
 
215
DI_main.o: $(ARBHOME)/INCLUDE/test_global.h
 
216
DI_main.o: $(ARBHOME)/INCLUDE/ttypes.h
70
217
 
 
218
DI_matr.o: di_awars.hxx
 
219
DI_matr.o: di_clusters.hxx
71
220
DI_matr.o: di_matr.hxx
72
221
DI_matr.o: di_protdist.hxx
73
222
DI_matr.o: di_view_matrix.hxx
74
223
DI_matr.o: dist.hxx
75
 
DI_matr.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
 
224
DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb.h
 
225
DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
76
226
DI_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
77
227
DI_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
228
DI_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
229
DI_matr.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
 
230
DI_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
231
DI_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
232
DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
 
233
DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
 
234
DI_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
235
DI_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
78
236
DI_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
237
DI_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
 
238
DI_matr.o: $(ARBHOME)/INCLUDE/arb_defs.h
 
239
DI_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
 
240
DI_matr.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
 
241
DI_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
242
DI_matr.o: $(ARBHOME)/INCLUDE/arb_progress.h
 
243
DI_matr.o: $(ARBHOME)/INCLUDE/arb_sort.h
 
244
DI_matr.o: $(ARBHOME)/INCLUDE/arb_strarray.h
 
245
DI_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
 
246
DI_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
79
247
DI_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
80
248
DI_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
81
249
DI_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
250
DI_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
82
251
DI_matr.o: $(ARBHOME)/INCLUDE/attributes.h
 
252
DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
 
253
DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
83
254
DI_matr.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
 
255
DI_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
84
256
DI_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
85
 
DI_matr.o: $(ARBHOME)/INCLUDE/aw_device.hxx
86
 
DI_matr.o: $(ARBHOME)/INCLUDE/aw_global.hxx
 
257
DI_matr.o: $(ARBHOME)/INCLUDE/aw_file.hxx
87
258
DI_matr.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
88
 
DI_matr.o: $(ARBHOME)/INCLUDE/aw_position.hxx
 
259
DI_matr.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
89
260
DI_matr.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
90
261
DI_matr.o: $(ARBHOME)/INCLUDE/aw_root.hxx
91
262
DI_matr.o: $(ARBHOME)/INCLUDE/aw_window.hxx
92
263
DI_matr.o: $(ARBHOME)/INCLUDE/awt.hxx
93
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_csp.hxx
94
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_macro.hxx
95
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
 
264
DI_matr.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
96
265
DI_matr.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
97
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
98
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
99
 
DI_matr.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
266
DI_matr.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
100
267
DI_matr.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
 
268
DI_matr.o: $(ARBHOME)/INCLUDE/cb.h
 
269
DI_matr.o: $(ARBHOME)/INCLUDE/cb_base.h
 
270
DI_matr.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
271
DI_matr.o: $(ARBHOME)/INCLUDE/ColumnStat.hxx
101
272
DI_matr.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx
102
 
 
103
 
DI_mldist.o: di_matr.hxx
104
 
DI_mldist.o: di_mldist.hxx
105
 
DI_mldist.o: dist.hxx
106
 
DI_mldist.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
107
 
DI_mldist.o: $(ARBHOME)/INCLUDE/ad_prot.h
108
 
DI_mldist.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
109
 
DI_mldist.o: $(ARBHOME)/INCLUDE/arb_assert.h
110
 
DI_mldist.o: $(ARBHOME)/INCLUDE/arbdb.h
111
 
DI_mldist.o: $(ARBHOME)/INCLUDE/arbdb_base.h
112
 
DI_mldist.o: $(ARBHOME)/INCLUDE/arbdbt.h
113
 
DI_mldist.o: $(ARBHOME)/INCLUDE/attributes.h
114
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
115
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_device.hxx
116
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
117
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_position.hxx
118
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
119
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_root.hxx
120
 
DI_mldist.o: $(ARBHOME)/INCLUDE/aw_window.hxx
121
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt.hxx
122
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt_csp.hxx
123
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
124
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
125
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
126
 
DI_mldist.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
273
DI_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
274
DI_matr.o: $(ARBHOME)/INCLUDE/downcast.h
 
275
DI_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
 
276
DI_matr.o: $(ARBHOME)/INCLUDE/gccver.h
 
277
DI_matr.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
 
278
DI_matr.o: $(ARBHOME)/INCLUDE/macros.hxx
 
279
DI_matr.o: $(ARBHOME)/INCLUDE/neighbourjoin.hxx
 
280
DI_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
281
DI_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
 
282
DI_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
 
283
DI_matr.o: $(ARBHOME)/INCLUDE/test_global.h
 
284
DI_matr.o: $(ARBHOME)/INCLUDE/ttypes.h
127
285
 
128
286
DI_protdist.o: di_matr.hxx
129
287
DI_protdist.o: di_protdist.hxx
130
 
DI_protdist.o: dist.hxx
131
 
DI_protdist.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
132
288
DI_protdist.o: $(ARBHOME)/INCLUDE/ad_prot.h
133
289
DI_protdist.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
290
DI_protdist.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
291
DI_protdist.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
292
DI_protdist.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
293
DI_protdist.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
 
294
DI_protdist.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
295
DI_protdist.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
134
296
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
297
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_core.h
 
298
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_error.h
 
299
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
300
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_progress.h
 
301
DI_protdist.o: $(ARBHOME)/INCLUDE/arb_string.h
 
302
DI_protdist.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
135
303
DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb.h
136
304
DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb_base.h
137
305
DI_protdist.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
306
DI_protdist.o: $(ARBHOME)/INCLUDE/arbtools.h
138
307
DI_protdist.o: $(ARBHOME)/INCLUDE/attributes.h
 
308
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_base.hxx
139
309
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
140
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_device.hxx
141
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
142
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_position.hxx
143
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
144
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_root.hxx
145
 
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_window.hxx
146
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt.hxx
147
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt_csp.hxx
148
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
149
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
150
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
151
 
DI_protdist.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
310
DI_protdist.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
 
311
DI_protdist.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
312
DI_protdist.o: $(ARBHOME)/INCLUDE/downcast.h
 
313
DI_protdist.o: $(ARBHOME)/INCLUDE/dupstr.h
 
314
DI_protdist.o: $(ARBHOME)/INCLUDE/gccver.h
 
315
DI_protdist.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
316
DI_protdist.o: $(ARBHOME)/INCLUDE/smartptr.h
 
317
DI_protdist.o: $(ARBHOME)/INCLUDE/static_assert.h
 
318
DI_protdist.o: $(ARBHOME)/INCLUDE/test_global.h
152
319
 
153
320
DI_save_matr.o: di_matr.hxx
154
 
DI_save_matr.o: dist.hxx
155
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
156
321
DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
157
322
DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
323
DI_save_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
324
DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
325
DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
326
DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
327
DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
158
328
DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
329
DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
 
330
DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
 
331
DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
332
DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
 
333
DI_save_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
159
334
DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
160
335
DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
161
336
DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
337
DI_save_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
162
338
DI_save_matr.o: $(ARBHOME)/INCLUDE/attributes.h
 
339
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
163
340
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
164
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_device.hxx
165
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
166
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_position.hxx
167
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_root.hxx
168
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_window.hxx
169
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_csp.hxx
170
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_nds.hxx
171
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
172
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
173
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
174
 
DI_save_matr.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
341
DI_save_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
342
DI_save_matr.o: $(ARBHOME)/INCLUDE/downcast.h
 
343
DI_save_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
 
344
DI_save_matr.o: $(ARBHOME)/INCLUDE/gccver.h
 
345
DI_save_matr.o: $(ARBHOME)/INCLUDE/nds.h
 
346
DI_save_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
347
DI_save_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
 
348
DI_save_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
 
349
DI_save_matr.o: $(ARBHOME)/INCLUDE/test_global.h
175
350
 
176
351
DI_view_matrix.o: di_matr.hxx
177
352
DI_view_matrix.o: di_view_matrix.hxx
178
353
DI_view_matrix.o: dist.hxx
179
 
DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
180
354
DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
181
355
DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
356
DI_view_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
357
DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
358
DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
359
DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
360
DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
 
361
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_algo.h
182
362
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
363
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
 
364
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
 
365
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
366
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
 
367
DI_view_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
183
368
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
184
369
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
185
370
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
371
DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
186
372
DI_view_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
 
373
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
 
374
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
187
375
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
 
376
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
188
377
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
189
378
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device.hxx
 
379
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
190
380
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
 
381
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
191
382
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_position.hxx
192
383
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
193
384
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
194
385
DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
195
386
DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
196
 
DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
197
 
DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
198
 
DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
199
 
DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
387
DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb.h
 
388
DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb_base.h
 
389
DI_view_matrix.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
390
DI_view_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
391
DI_view_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
 
392
DI_view_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
 
393
DI_view_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
 
394
DI_view_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
395
DI_view_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
 
396
DI_view_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
 
397
DI_view_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
 
398
DI_view_matrix.o: $(ARBHOME)/INCLUDE/ttypes.h
200
399
 
201
400
distanalyse.o: di_matr.hxx
202
 
distanalyse.o: dist.hxx
203
 
distanalyse.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
204
401
distanalyse.o: $(ARBHOME)/INCLUDE/ad_prot.h
205
402
distanalyse.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
 
403
distanalyse.o: $(ARBHOME)/INCLUDE/AliView.hxx
 
404
distanalyse.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
 
405
distanalyse.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
 
406
distanalyse.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
 
407
distanalyse.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
 
408
distanalyse.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
 
409
distanalyse.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
206
410
distanalyse.o: $(ARBHOME)/INCLUDE/arb_assert.h
 
411
distanalyse.o: $(ARBHOME)/INCLUDE/arb_core.h
 
412
distanalyse.o: $(ARBHOME)/INCLUDE/arb_error.h
 
413
distanalyse.o: $(ARBHOME)/INCLUDE/arb_msg.h
 
414
distanalyse.o: $(ARBHOME)/INCLUDE/arb_string.h
 
415
distanalyse.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
207
416
distanalyse.o: $(ARBHOME)/INCLUDE/arbdb.h
208
417
distanalyse.o: $(ARBHOME)/INCLUDE/arbdb_base.h
209
418
distanalyse.o: $(ARBHOME)/INCLUDE/arbdbt.h
 
419
distanalyse.o: $(ARBHOME)/INCLUDE/arbtools.h
210
420
distanalyse.o: $(ARBHOME)/INCLUDE/attributes.h
 
421
distanalyse.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
 
422
distanalyse.o: $(ARBHOME)/INCLUDE/aw_base.hxx
211
423
distanalyse.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
212
 
distanalyse.o: $(ARBHOME)/INCLUDE/aw_device.hxx
213
 
distanalyse.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
214
 
distanalyse.o: $(ARBHOME)/INCLUDE/aw_position.hxx
 
424
distanalyse.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
215
425
distanalyse.o: $(ARBHOME)/INCLUDE/aw_root.hxx
216
 
distanalyse.o: $(ARBHOME)/INCLUDE/aw_window.hxx
217
 
distanalyse.o: $(ARBHOME)/INCLUDE/awt.hxx
218
 
distanalyse.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
219
 
distanalyse.o: $(ARBHOME)/INCLUDE/awt_seq_dna.hxx
220
 
distanalyse.o: $(ARBHOME)/INCLUDE/awt_seq_simple_pro.hxx
221
 
distanalyse.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
 
426
distanalyse.o: $(ARBHOME)/INCLUDE/cb.h
 
427
distanalyse.o: $(ARBHOME)/INCLUDE/cb_base.h
 
428
distanalyse.o: $(ARBHOME)/INCLUDE/cbtypes.h
 
429
distanalyse.o: $(ARBHOME)/INCLUDE/cxxforward.h
 
430
distanalyse.o: $(ARBHOME)/INCLUDE/downcast.h
 
431
distanalyse.o: $(ARBHOME)/INCLUDE/dupstr.h
 
432
distanalyse.o: $(ARBHOME)/INCLUDE/gccver.h
 
433
distanalyse.o: $(ARBHOME)/INCLUDE/RootedTree.h
 
434
distanalyse.o: $(ARBHOME)/INCLUDE/smartptr.h
 
435
distanalyse.o: $(ARBHOME)/INCLUDE/static_assert.h
 
436
distanalyse.o: $(ARBHOME)/INCLUDE/test_global.h
 
437
distanalyse.o: $(ARBHOME)/INCLUDE/ttypes.h