source: tags/arb-6.0/SL/MACROS/Makefile

Last change on this file was 11798, checked in by westram, 10 years ago
File size: 6.6 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5OBJECTS=$(subst .cxx,.o,$(wildcard *.cxx))
6
7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
9
10.cxx.o:
11        $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE)
12
13clean:
14        rm -f $(OBJECTS) *.a
15
16DEPENDS = $(OBJECTS:.o=.depend)
17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.init:
22        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
23.c.depend:
24        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
25.cxx.depend:
26        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
27
28# DO NOT DELETE
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
32
33dbserver.o: dbserver.hxx
34dbserver.o: macros.hxx
35dbserver.o: macros_local.hxx
36dbserver.o: trackers.hxx
37dbserver.o: $(ARBHOME)/INCLUDE/ad_prot.h
38dbserver.o: $(ARBHOME)/INCLUDE/ad_remote.h
39dbserver.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
40dbserver.o: $(ARBHOME)/INCLUDE/arb_assert.h
41dbserver.o: $(ARBHOME)/INCLUDE/arb_core.h
42dbserver.o: $(ARBHOME)/INCLUDE/arb_error.h
43dbserver.o: $(ARBHOME)/INCLUDE/arb_msg.h
44dbserver.o: $(ARBHOME)/INCLUDE/arb_sleep.h
45dbserver.o: $(ARBHOME)/INCLUDE/arb_string.h
46dbserver.o: $(ARBHOME)/INCLUDE/arbdb.h
47dbserver.o: $(ARBHOME)/INCLUDE/arbdb_base.h
48dbserver.o: $(ARBHOME)/INCLUDE/arbdbt.h
49dbserver.o: $(ARBHOME)/INCLUDE/arbtools.h
50dbserver.o: $(ARBHOME)/INCLUDE/attributes.h
51dbserver.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
52dbserver.o: $(ARBHOME)/INCLUDE/aw_base.hxx
53dbserver.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
54dbserver.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
55dbserver.o: $(ARBHOME)/INCLUDE/aw_root.hxx
56dbserver.o: $(ARBHOME)/INCLUDE/aw_window.hxx
57dbserver.o: $(ARBHOME)/INCLUDE/cb.h
58dbserver.o: $(ARBHOME)/INCLUDE/cb_base.h
59dbserver.o: $(ARBHOME)/INCLUDE/cbtypes.h
60dbserver.o: $(ARBHOME)/INCLUDE/cxxforward.h
61dbserver.o: $(ARBHOME)/INCLUDE/downcast.h
62dbserver.o: $(ARBHOME)/INCLUDE/dupstr.h
63dbserver.o: $(ARBHOME)/INCLUDE/gccver.h
64dbserver.o: $(ARBHOME)/INCLUDE/smartptr.h
65dbserver.o: $(ARBHOME)/INCLUDE/static_assert.h
66dbserver.o: $(ARBHOME)/INCLUDE/test_global.h
67dbserver.o: $(ARBHOME)/INCLUDE/ttypes.h
68
69macro_gui.o: macros.hxx
70macro_gui.o: macros_local.hxx
71macro_gui.o: trackers.hxx
72macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb.h
73macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
74macro_gui.o: $(ARBHOME)/INCLUDE/ad_prot.h
75macro_gui.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
76macro_gui.o: $(ARBHOME)/INCLUDE/arb_assert.h
77macro_gui.o: $(ARBHOME)/INCLUDE/arb_core.h
78macro_gui.o: $(ARBHOME)/INCLUDE/arb_error.h
79macro_gui.o: $(ARBHOME)/INCLUDE/arb_file.h
80macro_gui.o: $(ARBHOME)/INCLUDE/arb_msg.h
81macro_gui.o: $(ARBHOME)/INCLUDE/arb_string.h
82macro_gui.o: $(ARBHOME)/INCLUDE/arbdb.h
83macro_gui.o: $(ARBHOME)/INCLUDE/arbdb_base.h
84macro_gui.o: $(ARBHOME)/INCLUDE/arbdbt.h
85macro_gui.o: $(ARBHOME)/INCLUDE/arbtools.h
86macro_gui.o: $(ARBHOME)/INCLUDE/attributes.h
87macro_gui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
88macro_gui.o: $(ARBHOME)/INCLUDE/aw_base.hxx
89macro_gui.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
90macro_gui.o: $(ARBHOME)/INCLUDE/aw_file.hxx
91macro_gui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
92macro_gui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
93macro_gui.o: $(ARBHOME)/INCLUDE/aw_root.hxx
94macro_gui.o: $(ARBHOME)/INCLUDE/aw_window.hxx
95macro_gui.o: $(ARBHOME)/INCLUDE/cb.h
96macro_gui.o: $(ARBHOME)/INCLUDE/cb_base.h
97macro_gui.o: $(ARBHOME)/INCLUDE/cbtypes.h
98macro_gui.o: $(ARBHOME)/INCLUDE/cxxforward.h
99macro_gui.o: $(ARBHOME)/INCLUDE/downcast.h
100macro_gui.o: $(ARBHOME)/INCLUDE/dupstr.h
101macro_gui.o: $(ARBHOME)/INCLUDE/gccver.h
102macro_gui.o: $(ARBHOME)/INCLUDE/smartptr.h
103macro_gui.o: $(ARBHOME)/INCLUDE/static_assert.h
104macro_gui.o: $(ARBHOME)/INCLUDE/test_global.h
105macro_gui.o: $(ARBHOME)/INCLUDE/ttypes.h
106
107recmac.o: macros_local.hxx
108recmac.o: recmac.hxx
109recmac.o: $(ARBHOME)/INCLUDE/ad_prot.h
110recmac.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
111recmac.o: $(ARBHOME)/INCLUDE/arb_assert.h
112recmac.o: $(ARBHOME)/INCLUDE/arb_core.h
113recmac.o: $(ARBHOME)/INCLUDE/arb_defs.h
114recmac.o: $(ARBHOME)/INCLUDE/arb_diff.h
115recmac.o: $(ARBHOME)/INCLUDE/arb_error.h
116recmac.o: $(ARBHOME)/INCLUDE/arb_file.h
117recmac.o: $(ARBHOME)/INCLUDE/arb_msg.h
118recmac.o: $(ARBHOME)/INCLUDE/arb_str.h
119recmac.o: $(ARBHOME)/INCLUDE/arb_strarray.h
120recmac.o: $(ARBHOME)/INCLUDE/arb_string.h
121recmac.o: $(ARBHOME)/INCLUDE/arbdb.h
122recmac.o: $(ARBHOME)/INCLUDE/arbdb_base.h
123recmac.o: $(ARBHOME)/INCLUDE/arbdbt.h
124recmac.o: $(ARBHOME)/INCLUDE/arbtools.h
125recmac.o: $(ARBHOME)/INCLUDE/attributes.h
126recmac.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
127recmac.o: $(ARBHOME)/INCLUDE/aw_base.hxx
128recmac.o: $(ARBHOME)/INCLUDE/aw_file.hxx
129recmac.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
130recmac.o: $(ARBHOME)/INCLUDE/aw_root.hxx
131recmac.o: $(ARBHOME)/INCLUDE/cb.h
132recmac.o: $(ARBHOME)/INCLUDE/cb_base.h
133recmac.o: $(ARBHOME)/INCLUDE/cbtypes.h
134recmac.o: $(ARBHOME)/INCLUDE/cxxforward.h
135recmac.o: $(ARBHOME)/INCLUDE/downcast.h
136recmac.o: $(ARBHOME)/INCLUDE/dupstr.h
137recmac.o: $(ARBHOME)/INCLUDE/FileContent.h
138recmac.o: $(ARBHOME)/INCLUDE/gccver.h
139recmac.o: $(ARBHOME)/INCLUDE/smartptr.h
140recmac.o: $(ARBHOME)/INCLUDE/static_assert.h
141recmac.o: $(ARBHOME)/INCLUDE/test_global.h
142recmac.o: $(ARBHOME)/INCLUDE/test_unit.h
143recmac.o: $(ARBHOME)/INCLUDE/ttypes.h
144
145trackers.o: dbserver.hxx
146trackers.o: macros.hxx
147trackers.o: macros_local.hxx
148trackers.o: recmac.hxx
149trackers.o: trackers.hxx
150trackers.o: $(ARBHOME)/INCLUDE/ad_cb.h
151trackers.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
152trackers.o: $(ARBHOME)/INCLUDE/ad_prot.h
153trackers.o: $(ARBHOME)/INCLUDE/ad_remote.h
154trackers.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
155trackers.o: $(ARBHOME)/INCLUDE/arb_assert.h
156trackers.o: $(ARBHOME)/INCLUDE/arb_core.h
157trackers.o: $(ARBHOME)/INCLUDE/arb_error.h
158trackers.o: $(ARBHOME)/INCLUDE/arb_msg.h
159trackers.o: $(ARBHOME)/INCLUDE/arb_sleep.h
160trackers.o: $(ARBHOME)/INCLUDE/arb_strarray.h
161trackers.o: $(ARBHOME)/INCLUDE/arb_string.h
162trackers.o: $(ARBHOME)/INCLUDE/arbdb.h
163trackers.o: $(ARBHOME)/INCLUDE/arbdb_base.h
164trackers.o: $(ARBHOME)/INCLUDE/arbdbt.h
165trackers.o: $(ARBHOME)/INCLUDE/arbtools.h
166trackers.o: $(ARBHOME)/INCLUDE/attributes.h
167trackers.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
168trackers.o: $(ARBHOME)/INCLUDE/aw_base.hxx
169trackers.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
170trackers.o: $(ARBHOME)/INCLUDE/aw_root.hxx
171trackers.o: $(ARBHOME)/INCLUDE/cb.h
172trackers.o: $(ARBHOME)/INCLUDE/cb_base.h
173trackers.o: $(ARBHOME)/INCLUDE/cbtypes.h
174trackers.o: $(ARBHOME)/INCLUDE/cxxforward.h
175trackers.o: $(ARBHOME)/INCLUDE/downcast.h
176trackers.o: $(ARBHOME)/INCLUDE/dupstr.h
177trackers.o: $(ARBHOME)/INCLUDE/gccver.h
178trackers.o: $(ARBHOME)/INCLUDE/smartptr.h
179trackers.o: $(ARBHOME)/INCLUDE/static_assert.h
180trackers.o: $(ARBHOME)/INCLUDE/test_global.h
181trackers.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.