source: branches/alilink/SL/CONSENSUS/Makefile

Last change on this file was 15559, checked in by westram, 8 years ago
  • reintegrates 'random' into 'trunk'
    • replaces random number generator by portable version (using boost)
    • approve changed test results (PARSIMONY: mix protein tree; CONSENSUS: random regression test)
    • accept one unstable test result
  • adds: log:branches/random@15551:15558
File size: 1.7 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
33chartable.o: chartable.h
34chartable.o: consensus.h
35chartable.o: $(ARBHOME)/INCLUDE/ad_prot.h
36chartable.o: $(ARBHOME)/INCLUDE/arb_assert.h
37chartable.o: $(ARBHOME)/INCLUDE/arb_core.h
38chartable.o: $(ARBHOME)/INCLUDE/arb_defs.h
39chartable.o: $(ARBHOME)/INCLUDE/arb_error.h
40chartable.o: $(ARBHOME)/INCLUDE/arb_mem.h
41chartable.o: $(ARBHOME)/INCLUDE/arb_msg.h
42chartable.o: $(ARBHOME)/INCLUDE/arb_string.h
43chartable.o: $(ARBHOME)/INCLUDE/arbdb.h
44chartable.o: $(ARBHOME)/INCLUDE/arbdb_base.h
45chartable.o: $(ARBHOME)/INCLUDE/arbtools.h
46chartable.o: $(ARBHOME)/INCLUDE/attributes.h
47chartable.o: $(ARBHOME)/INCLUDE/aw_base.hxx
48chartable.o: $(ARBHOME)/INCLUDE/cxxforward.h
49chartable.o: $(ARBHOME)/INCLUDE/dupstr.h
50chartable.o: $(ARBHOME)/INCLUDE/gccver.h
51chartable.o: $(ARBHOME)/INCLUDE/iupac.h
52chartable.o: $(ARBHOME)/INCLUDE/pos_range.h
53chartable.o: $(ARBHOME)/INCLUDE/smartptr.h
54chartable.o: $(ARBHOME)/INCLUDE/test_global.h
55chartable.o: $(ARBHOME)/INCLUDE/test_unit.h
Note: See TracBrowser for help on using the repository browser.