File: Makefile

package info (click to toggle)
probalign 1.4-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 368 kB
  • sloc: cpp: 4,964; makefile: 27; sh: 12
file content (11 lines) | stat: -rwxr-xr-x 390 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
CXX = g++
CXXFLAGS += -O3 -W -Wall -funroll-loops
TARGET = probalign

all : $(TARGET)

probalign : MultiSequence.h Sequence.h FileBuffer.h SparseMatrix.h EvolutionaryTree.h SafeVector.h Main.cc Sequence.h PostProbs.cc ComputeAlignment.cc ReadMatrix.cc Matrix.h
	$(CXX) $(CXXFLAGS) -lm -o $(TARGET) Main.cc PostProbs.cc ComputeAlignment.cc ReadMatrix.cc $(LDFLAGS)

clean: 
	rm -f $(TARGET)