source: branches/nameserver/SL/XFERGUI/Makefile

Last change on this file was 17921, checked in by westram, 5 years ago
  • document misbehavior when filling list of input fields
    • basically caused by GBS_strstruct
  • add tests for GBS_strstruct + StrUniquifier showing unwanted behavior
    • both caused by empty GBS_strstruct having no buffer
File size: 2.4 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
33xfergui.o: xfergui.h
34xfergui.o: $(ARBHOME)/INCLUDE/ad_prot.h
35xfergui.o: $(ARBHOME)/INCLUDE/arb_assert.h
36xfergui.o: $(ARBHOME)/INCLUDE/arb_core.h
37xfergui.o: $(ARBHOME)/INCLUDE/arb_error.h
38xfergui.o: $(ARBHOME)/INCLUDE/arb_file.h
39xfergui.o: $(ARBHOME)/INCLUDE/arb_mem.h
40xfergui.o: $(ARBHOME)/INCLUDE/arb_msg.h
41xfergui.o: $(ARBHOME)/INCLUDE/arb_str.h
42xfergui.o: $(ARBHOME)/INCLUDE/arb_strarray.h
43xfergui.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
44xfergui.o: $(ARBHOME)/INCLUDE/arb_string.h
45xfergui.o: $(ARBHOME)/INCLUDE/arbdb.h
46xfergui.o: $(ARBHOME)/INCLUDE/arbdb_base.h
47xfergui.o: $(ARBHOME)/INCLUDE/arbtools.h
48xfergui.o: $(ARBHOME)/INCLUDE/attributes.h
49xfergui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
50xfergui.o: $(ARBHOME)/INCLUDE/aw_base.hxx
51xfergui.o: $(ARBHOME)/INCLUDE/aw_file.hxx
52xfergui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
53xfergui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
54xfergui.o: $(ARBHOME)/INCLUDE/aw_root.hxx
55xfergui.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
56xfergui.o: $(ARBHOME)/INCLUDE/aw_select.hxx
57xfergui.o: $(ARBHOME)/INCLUDE/aw_window.hxx
58xfergui.o: $(ARBHOME)/INCLUDE/awt_prompt.hxx
59xfergui.o: $(ARBHOME)/INCLUDE/cb.h
60xfergui.o: $(ARBHOME)/INCLUDE/cb_base.h
61xfergui.o: $(ARBHOME)/INCLUDE/cbtypes.h
62xfergui.o: $(ARBHOME)/INCLUDE/cxxforward.h
63xfergui.o: $(ARBHOME)/INCLUDE/dupstr.h
64xfergui.o: $(ARBHOME)/INCLUDE/ErrorOrType.h
65xfergui.o: $(ARBHOME)/INCLUDE/gccver.h
66xfergui.o: $(ARBHOME)/INCLUDE/smartptr.h
67xfergui.o: $(ARBHOME)/INCLUDE/static_assert.h
68xfergui.o: $(ARBHOME)/INCLUDE/StrUniquifier.h
69xfergui.o: $(ARBHOME)/INCLUDE/test_global.h
70xfergui.o: $(ARBHOME)/INCLUDE/test_unit.h
71xfergui.o: $(ARBHOME)/INCLUDE/ttypes.h
72xfergui.o: $(ARBHOME)/INCLUDE/xferset.h
Note: See TracBrowser for help on using the repository browser.