source: tags/svn.1.5.4/PGT/Makefile

Last change on this file was 7806, checked in by westram, 13 years ago

merge from dev [7720] [7721] [7722] [7723] [7724] [7725] [7726] [7747]

  • ItemSelector
    • is now const by default (org struct is called MutableItemSelector)
    • now passed/stored as reference
    • hide MutableItemSelectors using access functions (so only const ItemSelectors can be passed around)
  • BoundItemSel
    • color_mark_data was in fact a BoundItemSel
    • BoundItemSel is now const by default (org struct is called MutableBoundItemSel)
  • renames
    • DbScanner → GB_DbScanner
    • db_scanner_data → DbScanner
  • fixes
    • skip query if querying empty set (e.g. db w/o experiments)
    • assertion failure on multiple instances of field admin menu entries (genes + experiments)
    • gene-info shows selected gene when opened 1st time
    • error no longer exported in experiment create
    • deleting current item and then selecting a new one failed to remove callback on keydata
  • added TODOs for genes/experiment UI/ItemSelectors
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.2 KB
Line 
1# Copyright (c) 2004 - 2005 Kai Bader <baderk@in.tum.de>
2#
3# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
6# AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
7# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
8# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
10# CVS REVISION TAG  --  $Revision: 7806 $
11
12# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
13
14.SUFFIXES: .o .cxx .depend
15
16CPP_OBJECTS = main.o dialog.o arb_interface.o main_dialog.o \
17import_dialog.o selection_dialog.o file_import.o tiff_image.o \
18image_dialog.o plot.o analyze_window.o entry_sel_dialog.o \
19config_dialog.o help_dialog.o msgbox.o
20
21$(MAIN): $(CPP_OBJECTS)
22        $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS)
23
24.cxx.o:
25        $(CPP) $(cflags) -c -o $@ $(@:.o=.cxx)  $(CPPINCLUDES) $(POST_COMPILE)
26
27clean:
28        rm -f $(CPP_OBJECTS) *.a
29
30DEPENDS = $(CPP_OBJECTS:.o=.depend)
31depends: $(DEPENDS)
32        @cat $(DEPENDS) | grep -v '^#' >>Makefile
33        @rm $(DEPENDS)
34$(DEPENDS): depend.init
35depend.init:
36        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
37.c.depend:
38        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
39.cxx.depend:
40        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
41
42# DO NOT DELETE
43
44# Do not add dependencies manually - use 'make depend' in $ARBHOME
45# For formatting issues see SOURCE_TOOLS/fix_depends.pl
46
47analyze_window.o: analyze_window.hxx
48analyze_window.o: dialog.hxx
49analyze_window.o: plot.hxx
50analyze_window.o: $(ARBHOME)/INCLUDE/arbtools.h
51
52arb_interface.o: arb_interface.hxx
53arb_interface.o: xm_defs.hxx
54arb_interface.o: $(ARBHOME)/INCLUDE/ad_prot.h
55arb_interface.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
56arb_interface.o: $(ARBHOME)/INCLUDE/arb_assert.h
57arb_interface.o: $(ARBHOME)/INCLUDE/arb_core.h
58arb_interface.o: $(ARBHOME)/INCLUDE/arb_error.h
59arb_interface.o: $(ARBHOME)/INCLUDE/arb_msg.h
60arb_interface.o: $(ARBHOME)/INCLUDE/arb_string.h
61arb_interface.o: $(ARBHOME)/INCLUDE/arbdb.h
62arb_interface.o: $(ARBHOME)/INCLUDE/arbdb_base.h
63arb_interface.o: $(ARBHOME)/INCLUDE/arbdbt.h
64arb_interface.o: $(ARBHOME)/INCLUDE/arbtools.h
65arb_interface.o: $(ARBHOME)/INCLUDE/attributes.h
66arb_interface.o: $(ARBHOME)/INCLUDE/aw_base.hxx
67arb_interface.o: $(ARBHOME)/INCLUDE/dupstr.h
68arb_interface.o: $(ARBHOME)/INCLUDE/EXP.hxx
69arb_interface.o: $(ARBHOME)/INCLUDE/items.h
70arb_interface.o: $(ARBHOME)/INCLUDE/smartptr.h
71arb_interface.o: $(ARBHOME)/INCLUDE/test_global.h
72
73config_dialog.o: arb_interface.hxx
74config_dialog.o: config_dialog.hxx
75config_dialog.o: dialog.hxx
76config_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
77config_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
78config_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
79config_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
80config_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
81config_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
82config_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
83config_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
84config_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
85config_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
86config_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
87config_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
88config_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
89config_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
90config_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
91
92dialog.o: dialog.hxx
93dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
94dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
95dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
96dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
97dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
98dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
99dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
100dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
101dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
102dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
103dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
104dialog.o: $(ARBHOME)/INCLUDE/attributes.h
105dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
106dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
107dialog.o: $(ARBHOME)/INCLUDE/test_global.h
108
109entry_sel_dialog.o: arb_interface.hxx
110entry_sel_dialog.o: dialog.hxx
111entry_sel_dialog.o: entry_sel_dialog.hxx
112entry_sel_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
113entry_sel_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
114entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
115entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
116entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
117entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
118entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
119entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
120entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
121entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
122entry_sel_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
123entry_sel_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
124entry_sel_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
125entry_sel_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
126entry_sel_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
127
128file_import.o: arb_interface.hxx
129file_import.o: file_import.hxx
130file_import.o: $(ARBHOME)/INCLUDE/ad_prot.h
131file_import.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
132file_import.o: $(ARBHOME)/INCLUDE/arb_assert.h
133file_import.o: $(ARBHOME)/INCLUDE/arb_core.h
134file_import.o: $(ARBHOME)/INCLUDE/arb_error.h
135file_import.o: $(ARBHOME)/INCLUDE/arb_msg.h
136file_import.o: $(ARBHOME)/INCLUDE/arb_string.h
137file_import.o: $(ARBHOME)/INCLUDE/arbdb.h
138file_import.o: $(ARBHOME)/INCLUDE/arbdb_base.h
139file_import.o: $(ARBHOME)/INCLUDE/arbdbt.h
140file_import.o: $(ARBHOME)/INCLUDE/arbtools.h
141file_import.o: $(ARBHOME)/INCLUDE/attributes.h
142file_import.o: $(ARBHOME)/INCLUDE/dupstr.h
143file_import.o: $(ARBHOME)/INCLUDE/smartptr.h
144file_import.o: $(ARBHOME)/INCLUDE/test_global.h
145
146help_dialog.o: dialog.hxx
147help_dialog.o: help_dialog.hxx
148help_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
149
150image_dialog.o: arb_interface.hxx
151image_dialog.o: config_dialog.hxx
152image_dialog.o: dialog.hxx
153image_dialog.o: help_dialog.hxx
154image_dialog.o: image_dialog.hxx
155image_dialog.o: selection_dialog.hxx
156image_dialog.o: tiff_image.hxx
157image_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
158image_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
159image_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
160image_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
161image_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
162image_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
163image_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
164image_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
165image_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
166image_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
167image_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
168image_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
169image_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
170image_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
171image_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
172
173import_dialog.o: arb_interface.hxx
174import_dialog.o: dialog.hxx
175import_dialog.o: entry_sel_dialog.hxx
176import_dialog.o: file_import.hxx
177import_dialog.o: import_dialog.hxx
178import_dialog.o: selection_dialog.hxx
179import_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
180import_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
181import_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
182import_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
183import_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
184import_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
185import_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
186import_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
187import_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
188import_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
189import_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
190import_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
191import_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
192import_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
193import_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
194
195main.o: arb_interface.hxx
196main.o: dialog.hxx
197main.o: file_import.hxx
198main.o: image_dialog.hxx
199main.o: import_dialog.hxx
200main.o: main_dialog.hxx
201main.o: tiff_image.hxx
202main.o: $(ARBHOME)/INCLUDE/ad_prot.h
203main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
204main.o: $(ARBHOME)/INCLUDE/arb_assert.h
205main.o: $(ARBHOME)/INCLUDE/arb_core.h
206main.o: $(ARBHOME)/INCLUDE/arb_error.h
207main.o: $(ARBHOME)/INCLUDE/arb_msg.h
208main.o: $(ARBHOME)/INCLUDE/arb_string.h
209main.o: $(ARBHOME)/INCLUDE/arbdb.h
210main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
211main.o: $(ARBHOME)/INCLUDE/arbdbt.h
212main.o: $(ARBHOME)/INCLUDE/arbtools.h
213main.o: $(ARBHOME)/INCLUDE/attributes.h
214main.o: $(ARBHOME)/INCLUDE/dupstr.h
215main.o: $(ARBHOME)/INCLUDE/smartptr.h
216main.o: $(ARBHOME)/INCLUDE/test_global.h
217
218main_dialog.o: analyze_window.hxx
219main_dialog.o: arb_interface.hxx
220main_dialog.o: config_dialog.hxx
221main_dialog.o: dialog.hxx
222main_dialog.o: file_import.hxx
223main_dialog.o: image_dialog.hxx
224main_dialog.o: import_dialog.hxx
225main_dialog.o: main_dialog.hxx
226main_dialog.o: msgbox.hxx
227main_dialog.o: plot.hxx
228main_dialog.o: tiff_image.hxx
229main_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
230main_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
231main_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
232main_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
233main_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
234main_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
235main_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
236main_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
237main_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
238main_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
239main_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
240main_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
241main_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
242main_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
243main_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
244
245msgbox.o: dialog.hxx
246msgbox.o: msgbox.hxx
247msgbox.o: xm_defs.hxx
248msgbox.o: $(ARBHOME)/INCLUDE/arbtools.h
249
250plot.o: plot.hxx
251plot.o: $(ARBHOME)/INCLUDE/arbtools.h
252
253selection_dialog.o: arb_interface.hxx
254selection_dialog.o: dialog.hxx
255selection_dialog.o: selection_dialog.hxx
256selection_dialog.o: $(ARBHOME)/INCLUDE/ad_prot.h
257selection_dialog.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
258selection_dialog.o: $(ARBHOME)/INCLUDE/arb_assert.h
259selection_dialog.o: $(ARBHOME)/INCLUDE/arb_core.h
260selection_dialog.o: $(ARBHOME)/INCLUDE/arb_error.h
261selection_dialog.o: $(ARBHOME)/INCLUDE/arb_msg.h
262selection_dialog.o: $(ARBHOME)/INCLUDE/arb_string.h
263selection_dialog.o: $(ARBHOME)/INCLUDE/arbdb.h
264selection_dialog.o: $(ARBHOME)/INCLUDE/arbdb_base.h
265selection_dialog.o: $(ARBHOME)/INCLUDE/arbdbt.h
266selection_dialog.o: $(ARBHOME)/INCLUDE/arbtools.h
267selection_dialog.o: $(ARBHOME)/INCLUDE/attributes.h
268selection_dialog.o: $(ARBHOME)/INCLUDE/dupstr.h
269selection_dialog.o: $(ARBHOME)/INCLUDE/smartptr.h
270selection_dialog.o: $(ARBHOME)/INCLUDE/test_global.h
271
272tiff_image.o: tiff_image.hxx
273tiff_image.o: $(ARBHOME)/INCLUDE/arbtools.h
Note: See TracBrowser for help on using the repository browser.