source: branches/stable/SL/AW_NAME/Makefile

Last change on this file was 16469, checked in by westram, 6 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .c .cxx .depend
4
5C_OBJECTS =
6CPP_OBJECTS = \
7        AW_rename.o \
8        AW_names_admin.o \
9
10OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS)
11
12$(MAIN): $(OBJECTS)
13        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
14
15.cxx.o:
16        $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $<
17
18.c.o:
19        $(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $<
20
21clean:
22        rm -f $(OBJECTS) *.a
23
24DEPENDS = $(OBJECTS:.o=.depend)
25depends: $(DEPENDS)
26        @cat $(DEPENDS) | grep -v '^#' >>Makefile
27        @rm $(DEPENDS)
28$(DEPENDS): depend.init
29depend.init:
30        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
31.c.depend:
32        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
33.cxx.depend:
34        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
35
36# DO NOT DELETE
37
38# Do not add dependencies manually - use 'make depend' in $ARBHOME
39# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
40
41AW_names_admin.o: AW_rename.hxx
42AW_names_admin.o: $(ARBHOME)/INCLUDE/ad_prot.h
43AW_names_admin.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
44AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_assert.h
45AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_core.h
46AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_error.h
47AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_file.h
48AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_mem.h
49AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_msg.h
50AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_string.h
51AW_names_admin.o: $(ARBHOME)/INCLUDE/arbdb.h
52AW_names_admin.o: $(ARBHOME)/INCLUDE/arbdb_base.h
53AW_names_admin.o: $(ARBHOME)/INCLUDE/arbdbt.h
54AW_names_admin.o: $(ARBHOME)/INCLUDE/arbtools.h
55AW_names_admin.o: $(ARBHOME)/INCLUDE/attributes.h
56AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_advice.hxx
57AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
58AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_base.hxx
59AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
60AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_inotify.hxx
61AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
62AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
63AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_question.hxx
64AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_root.hxx
65AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_window.hxx
66AW_names_admin.o: $(ARBHOME)/INCLUDE/awt_misc.hxx
67AW_names_admin.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
68AW_names_admin.o: $(ARBHOME)/INCLUDE/cb.h
69AW_names_admin.o: $(ARBHOME)/INCLUDE/cb_base.h
70AW_names_admin.o: $(ARBHOME)/INCLUDE/cbtypes.h
71AW_names_admin.o: $(ARBHOME)/INCLUDE/cxxforward.h
72AW_names_admin.o: $(ARBHOME)/INCLUDE/downcast.h
73AW_names_admin.o: $(ARBHOME)/INCLUDE/dupstr.h
74AW_names_admin.o: $(ARBHOME)/INCLUDE/gccver.h
75AW_names_admin.o: $(ARBHOME)/INCLUDE/smartptr.h
76AW_names_admin.o: $(ARBHOME)/INCLUDE/static_assert.h
77AW_names_admin.o: $(ARBHOME)/INCLUDE/test_global.h
78AW_names_admin.o: $(ARBHOME)/INCLUDE/ttypes.h
79
80AW_rename.o: AW_rename.hxx
81AW_rename.o: $(ARBHOME)/INCLUDE/ad_prot.h
82AW_rename.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
83AW_rename.o: $(ARBHOME)/INCLUDE/aisc_global.h
84AW_rename.o: $(ARBHOME)/INCLUDE/arb_assert.h
85AW_rename.o: $(ARBHOME)/INCLUDE/arb_core.h
86AW_rename.o: $(ARBHOME)/INCLUDE/arb_error.h
87AW_rename.o: $(ARBHOME)/INCLUDE/arb_mem.h
88AW_rename.o: $(ARBHOME)/INCLUDE/arb_msg.h
89AW_rename.o: $(ARBHOME)/INCLUDE/arb_progress.h
90AW_rename.o: $(ARBHOME)/INCLUDE/arb_string.h
91AW_rename.o: $(ARBHOME)/INCLUDE/arbdb.h
92AW_rename.o: $(ARBHOME)/INCLUDE/arbdb_base.h
93AW_rename.o: $(ARBHOME)/INCLUDE/arbdbt.h
94AW_rename.o: $(ARBHOME)/INCLUDE/arbtools.h
95AW_rename.o: $(ARBHOME)/INCLUDE/attributes.h
96AW_rename.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
97AW_rename.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
98AW_rename.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
99AW_rename.o: $(ARBHOME)/INCLUDE/aw_base.hxx
100AW_rename.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
101AW_rename.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
102AW_rename.o: $(ARBHOME)/INCLUDE/aw_question.hxx
103AW_rename.o: $(ARBHOME)/INCLUDE/aw_root.hxx
104AW_rename.o: $(ARBHOME)/INCLUDE/aw_window.hxx
105AW_rename.o: $(ARBHOME)/INCLUDE/bytestring.h
106AW_rename.o: $(ARBHOME)/INCLUDE/cb.h
107AW_rename.o: $(ARBHOME)/INCLUDE/cb_base.h
108AW_rename.o: $(ARBHOME)/INCLUDE/cbtypes.h
109AW_rename.o: $(ARBHOME)/INCLUDE/client.h
110AW_rename.o: $(ARBHOME)/INCLUDE/client_types.h
111AW_rename.o: $(ARBHOME)/INCLUDE/cxxforward.h
112AW_rename.o: $(ARBHOME)/INCLUDE/downcast.h
113AW_rename.o: $(ARBHOME)/INCLUDE/dupstr.h
114AW_rename.o: $(ARBHOME)/INCLUDE/gccver.h
115AW_rename.o: $(ARBHOME)/INCLUDE/names_client.h
116AW_rename.o: $(ARBHOME)/INCLUDE/servercntrl.h
117AW_rename.o: $(ARBHOME)/INCLUDE/smartptr.h
118AW_rename.o: $(ARBHOME)/INCLUDE/static_assert.h
119AW_rename.o: $(ARBHOME)/INCLUDE/test_global.h
120AW_rename.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.