source: branches/profile/GDE/FASTTREE/Makefile

Last change on this file was 12299, checked in by westram, 10 years ago
  • CC/CXX used by arb
    • overwrite defaults after copying them into A_CC/A_CXX
    • fix all errors (triggered by above change)
      • remove fallbacks (probcons; MUSCLE; FASTTREE)
      • set CC/CXX from A_CC/A_CXX (MrBAYES; PHYML20130708)
File size: 443 bytes
Line 
1# fasttree2 Makefile for ARB
2# by Arne Boeckmann (2013)
3
4PROG  = FASTTREE
5
6CC=$(A_CC)
7
8#WFLAGS=-Wall
9WFLAGS=-w
10
11SOURCE=FastTree.c
12LOCBIN=FastTree
13INSTBIN=$(ARBHOME)/bin/FastTree
14
15# ARBs standard target
16$(MAIN) : $(INSTBIN)
17
18$(INSTBIN) : $(LOCBIN)
19        cp -f $(LOCBIN) $(INSTBIN)
20
21$(LOCBIN): Makefile $(SOURCE)
22        $(CC) -O3 -finline-functions -funroll-loops $(WFLAGS) -o $(LOCBIN) $(SOURCE) -lm
23
24clean :
25        rm -f $(LOCBIN) $(INSTBIN)
26
27.PHONY : clean
28
29
Note: See TracBrowser for help on using the repository browser.