source: branches/stable/SL/MACROS/Makefile

Last change on this file was 16469, checked in by westram, 7 years ago
  • reintegrates 'textedit' into 'trunk'
    • fixes #586
      • editor now always started asynchronously
      • uses inotify to track file changes
    • also use inotify to track directory updates (in order to update file selections when needed)
      (./) by [16515] ff.; merged by [16551]
  • adds: log:branches/textedit@16448:16468
File size: 6.9 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_mem.h
44dbserver.o: $(ARBHOME)/INCLUDE/arb_msg.h
45dbserver.o: $(ARBHOME)/INCLUDE/arb_sleep.h
46dbserver.o: $(ARBHOME)/INCLUDE/arb_string.h
47dbserver.o: $(ARBHOME)/INCLUDE/arbdb.h
48dbserver.o: $(ARBHOME)/INCLUDE/arbdb_base.h
49dbserver.o: $(ARBHOME)/INCLUDE/arbdbt.h
50dbserver.o: $(ARBHOME)/INCLUDE/arbtools.h
51dbserver.o: $(ARBHOME)/INCLUDE/attributes.h
52dbserver.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
53dbserver.o: $(ARBHOME)/INCLUDE/aw_base.hxx
54dbserver.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
55dbserver.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
56dbserver.o: $(ARBHOME)/INCLUDE/aw_root.hxx
57dbserver.o: $(ARBHOME)/INCLUDE/aw_window.hxx
58dbserver.o: $(ARBHOME)/INCLUDE/cb.h
59dbserver.o: $(ARBHOME)/INCLUDE/cb_base.h
60dbserver.o: $(ARBHOME)/INCLUDE/cbtypes.h
61dbserver.o: $(ARBHOME)/INCLUDE/cxxforward.h
62dbserver.o: $(ARBHOME)/INCLUDE/downcast.h
63dbserver.o: $(ARBHOME)/INCLUDE/dupstr.h
64dbserver.o: $(ARBHOME)/INCLUDE/gccver.h
65dbserver.o: $(ARBHOME)/INCLUDE/smartptr.h
66dbserver.o: $(ARBHOME)/INCLUDE/static_assert.h
67dbserver.o: $(ARBHOME)/INCLUDE/test_global.h
68dbserver.o: $(ARBHOME)/INCLUDE/ttypes.h
69
70macro_gui.o: macros.hxx
71macro_gui.o: macros_local.hxx
72macro_gui.o: trackers.hxx
73macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb.h
74macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
75macro_gui.o: $(ARBHOME)/INCLUDE/ad_prot.h
76macro_gui.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
77macro_gui.o: $(ARBHOME)/INCLUDE/arb_assert.h
78macro_gui.o: $(ARBHOME)/INCLUDE/arb_core.h
79macro_gui.o: $(ARBHOME)/INCLUDE/arb_error.h
80macro_gui.o: $(ARBHOME)/INCLUDE/arb_file.h
81macro_gui.o: $(ARBHOME)/INCLUDE/arb_mem.h
82macro_gui.o: $(ARBHOME)/INCLUDE/arb_msg.h
83macro_gui.o: $(ARBHOME)/INCLUDE/arb_string.h
84macro_gui.o: $(ARBHOME)/INCLUDE/arbdb.h
85macro_gui.o: $(ARBHOME)/INCLUDE/arbdb_base.h
86macro_gui.o: $(ARBHOME)/INCLUDE/arbdbt.h
87macro_gui.o: $(ARBHOME)/INCLUDE/arbtools.h
88macro_gui.o: $(ARBHOME)/INCLUDE/attributes.h
89macro_gui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
90macro_gui.o: $(ARBHOME)/INCLUDE/aw_base.hxx
91macro_gui.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
92macro_gui.o: $(ARBHOME)/INCLUDE/aw_file.hxx
93macro_gui.o: $(ARBHOME)/INCLUDE/aw_inotify.hxx
94macro_gui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
95macro_gui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
96macro_gui.o: $(ARBHOME)/INCLUDE/aw_root.hxx
97macro_gui.o: $(ARBHOME)/INCLUDE/aw_window.hxx
98macro_gui.o: $(ARBHOME)/INCLUDE/cb.h
99macro_gui.o: $(ARBHOME)/INCLUDE/cb_base.h
100macro_gui.o: $(ARBHOME)/INCLUDE/cbtypes.h
101macro_gui.o: $(ARBHOME)/INCLUDE/cxxforward.h
102macro_gui.o: $(ARBHOME)/INCLUDE/downcast.h
103macro_gui.o: $(ARBHOME)/INCLUDE/dupstr.h
104macro_gui.o: $(ARBHOME)/INCLUDE/gccver.h
105macro_gui.o: $(ARBHOME)/INCLUDE/smartptr.h
106macro_gui.o: $(ARBHOME)/INCLUDE/static_assert.h
107macro_gui.o: $(ARBHOME)/INCLUDE/test_global.h
108macro_gui.o: $(ARBHOME)/INCLUDE/ttypes.h
109
110recmac.o: macros_local.hxx
111recmac.o: recmac.hxx
112recmac.o: $(ARBHOME)/INCLUDE/ad_prot.h
113recmac.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
114recmac.o: $(ARBHOME)/INCLUDE/arb_assert.h
115recmac.o: $(ARBHOME)/INCLUDE/arb_core.h
116recmac.o: $(ARBHOME)/INCLUDE/arb_defs.h
117recmac.o: $(ARBHOME)/INCLUDE/arb_diff.h
118recmac.o: $(ARBHOME)/INCLUDE/arb_error.h
119recmac.o: $(ARBHOME)/INCLUDE/arb_file.h
120recmac.o: $(ARBHOME)/INCLUDE/arb_mem.h
121recmac.o: $(ARBHOME)/INCLUDE/arb_msg.h
122recmac.o: $(ARBHOME)/INCLUDE/arb_str.h
123recmac.o: $(ARBHOME)/INCLUDE/arb_strarray.h
124recmac.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
125recmac.o: $(ARBHOME)/INCLUDE/arb_string.h
126recmac.o: $(ARBHOME)/INCLUDE/arbdb.h
127recmac.o: $(ARBHOME)/INCLUDE/arbdb_base.h
128recmac.o: $(ARBHOME)/INCLUDE/arbdbt.h
129recmac.o: $(ARBHOME)/INCLUDE/arbtools.h
130recmac.o: $(ARBHOME)/INCLUDE/attributes.h
131recmac.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
132recmac.o: $(ARBHOME)/INCLUDE/aw_base.hxx
133recmac.o: $(ARBHOME)/INCLUDE/aw_file.hxx
134recmac.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
135recmac.o: $(ARBHOME)/INCLUDE/aw_root.hxx
136recmac.o: $(ARBHOME)/INCLUDE/cb.h
137recmac.o: $(ARBHOME)/INCLUDE/cb_base.h
138recmac.o: $(ARBHOME)/INCLUDE/cbtypes.h
139recmac.o: $(ARBHOME)/INCLUDE/cxxforward.h
140recmac.o: $(ARBHOME)/INCLUDE/downcast.h
141recmac.o: $(ARBHOME)/INCLUDE/dupstr.h
142recmac.o: $(ARBHOME)/INCLUDE/FileContent.h
143recmac.o: $(ARBHOME)/INCLUDE/gccver.h
144recmac.o: $(ARBHOME)/INCLUDE/smartptr.h
145recmac.o: $(ARBHOME)/INCLUDE/static_assert.h
146recmac.o: $(ARBHOME)/INCLUDE/test_global.h
147recmac.o: $(ARBHOME)/INCLUDE/test_runtool.h
148recmac.o: $(ARBHOME)/INCLUDE/test_unit.h
149recmac.o: $(ARBHOME)/INCLUDE/ttypes.h
150recmac.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h
151
152trackers.o: dbserver.hxx
153trackers.o: macros.hxx
154trackers.o: macros_local.hxx
155trackers.o: recmac.hxx
156trackers.o: trackers.hxx
157trackers.o: $(ARBHOME)/INCLUDE/ad_cb.h
158trackers.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
159trackers.o: $(ARBHOME)/INCLUDE/ad_prot.h
160trackers.o: $(ARBHOME)/INCLUDE/ad_remote.h
161trackers.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
162trackers.o: $(ARBHOME)/INCLUDE/arb_assert.h
163trackers.o: $(ARBHOME)/INCLUDE/arb_core.h
164trackers.o: $(ARBHOME)/INCLUDE/arb_error.h
165trackers.o: $(ARBHOME)/INCLUDE/arb_mem.h
166trackers.o: $(ARBHOME)/INCLUDE/arb_msg.h
167trackers.o: $(ARBHOME)/INCLUDE/arb_sleep.h
168trackers.o: $(ARBHOME)/INCLUDE/arb_strarray.h
169trackers.o: $(ARBHOME)/INCLUDE/arb_string.h
170trackers.o: $(ARBHOME)/INCLUDE/arbdb.h
171trackers.o: $(ARBHOME)/INCLUDE/arbdb_base.h
172trackers.o: $(ARBHOME)/INCLUDE/arbdbt.h
173trackers.o: $(ARBHOME)/INCLUDE/arbtools.h
174trackers.o: $(ARBHOME)/INCLUDE/attributes.h
175trackers.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
176trackers.o: $(ARBHOME)/INCLUDE/aw_base.hxx
177trackers.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
178trackers.o: $(ARBHOME)/INCLUDE/aw_root.hxx
179trackers.o: $(ARBHOME)/INCLUDE/cb.h
180trackers.o: $(ARBHOME)/INCLUDE/cb_base.h
181trackers.o: $(ARBHOME)/INCLUDE/cbtypes.h
182trackers.o: $(ARBHOME)/INCLUDE/cxxforward.h
183trackers.o: $(ARBHOME)/INCLUDE/downcast.h
184trackers.o: $(ARBHOME)/INCLUDE/dupstr.h
185trackers.o: $(ARBHOME)/INCLUDE/gccver.h
186trackers.o: $(ARBHOME)/INCLUDE/smartptr.h
187trackers.o: $(ARBHOME)/INCLUDE/static_assert.h
188trackers.o: $(ARBHOME)/INCLUDE/test_global.h
189trackers.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.