[10954] | 1 | # for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt |
---|
[6023] | 2 | |
---|
[18723] | 3 | .SUFFIXES: .o .cxx .depend |
---|
[6023] | 4 | |
---|
[18724] | 5 | OBJECTS = $(subst .cxx,.o,$(wildcard *.cxx)) |
---|
[6023] | 6 | |
---|
| 7 | $(MAIN): $(OBJECTS) |
---|
| 8 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
| 9 | |
---|
| 10 | .cxx.o: |
---|
[13443] | 11 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
[6023] | 12 | |
---|
| 13 | clean: |
---|
| 14 | rm -f $(OBJECTS) *.a |
---|
| 15 | |
---|
| 16 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
| 17 | depends: $(DEPENDS) |
---|
| 18 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
| 19 | @rm $(DEPENDS) |
---|
| 20 | $(DEPENDS): depend.init |
---|
| 21 | depend.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 |
---|
[9575] | 31 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL) |
---|
[6023] | 32 | |
---|
[18704] | 33 | TreeWrite.o: TreeLabeler.h |
---|
[6062] | 34 | TreeWrite.o: TreeWrite.h |
---|
[6023] | 35 | TreeWrite.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 36 | TreeWrite.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 37 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 38 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 39 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[17110] | 40 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
[15176] | 41 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 42 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[7314] | 43 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
[7183] | 44 | TreeWrite.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[6023] | 45 | TreeWrite.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 46 | TreeWrite.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 47 | TreeWrite.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 48 | TreeWrite.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[6023] | 49 | TreeWrite.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[6868] | 50 | TreeWrite.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
[9521] | 51 | TreeWrite.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 52 | TreeWrite.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 53 | TreeWrite.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 54 | TreeWrite.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[7801] | 55 | TreeWrite.o: $(ARBHOME)/INCLUDE/nds.h |
---|
[6318] | 56 | TreeWrite.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 57 | TreeWrite.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 58 | TreeWrite.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 59 | TreeWrite.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[13625] | 60 | TreeWrite.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
[6023] | 61 | TreeWrite.o: $(ARBHOME)/INCLUDE/xml.hxx |
---|