source: trunk/SL/NEIGHBOURJOIN/Makefile

Last change on this file was 18959, checked in by westram, 3 years ago
File size: 1.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
33NJ.o: neighbourjoin.hxx
34NJ.o: NJ.hxx
35NJ.o: $(ARBHOME)/INCLUDE/ad_prot.h
36NJ.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
37NJ.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
38NJ.o: $(ARBHOME)/INCLUDE/arb_assert.h
39NJ.o: $(ARBHOME)/INCLUDE/arb_core.h
40NJ.o: $(ARBHOME)/INCLUDE/arb_diff.h
41NJ.o: $(ARBHOME)/INCLUDE/arb_error.h
42NJ.o: $(ARBHOME)/INCLUDE/arb_mem.h
43NJ.o: $(ARBHOME)/INCLUDE/arb_msg.h
44NJ.o: $(ARBHOME)/INCLUDE/arb_progress.h
45NJ.o: $(ARBHOME)/INCLUDE/arb_string.h
46NJ.o: $(ARBHOME)/INCLUDE/arbdb.h
47NJ.o: $(ARBHOME)/INCLUDE/arbdb_base.h
48NJ.o: $(ARBHOME)/INCLUDE/arbdbt.h
49NJ.o: $(ARBHOME)/INCLUDE/arbtools.h
50NJ.o: $(ARBHOME)/INCLUDE/attributes.h
51NJ.o: $(ARBHOME)/INCLUDE/cxxforward.h
52NJ.o: $(ARBHOME)/INCLUDE/downcast.h
53NJ.o: $(ARBHOME)/INCLUDE/dupstr.h
54NJ.o: $(ARBHOME)/INCLUDE/gccver.h
55NJ.o: $(ARBHOME)/INCLUDE/matrix.h
56NJ.o: $(ARBHOME)/INCLUDE/smartptr.h
57NJ.o: $(ARBHOME)/INCLUDE/static_assert.h
58NJ.o: $(ARBHOME)/INCLUDE/stringize.h
59NJ.o: $(ARBHOME)/INCLUDE/test_global.h
60NJ.o: $(ARBHOME)/INCLUDE/test_unit.h
61NJ.o: $(ARBHOME)/INCLUDE/TreeNode.h
62NJ.o: $(ARBHOME)/INCLUDE/triangular.h
Note: See TracBrowser for help on using the repository browser.