forked from Yiqing-Gu/Pidentify
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
11 lines (10 loc) · 746 Bytes
/
Makefile
File metadata and controls
11 lines (10 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
cpv: alglib.a classMember.h modelState.h modelState.cpp fit.cpp fit.h main.cpp process.cpp process.h test.cpp test.h \
CSVWrite.hpp nanoflann/KDTreeVectorOfVectorsAdaptor.h nanoflann/nanoflann.hpp nanoflann/WeightedL2MetricAdaptor.hpp \
cachePaths.h runFromCache.cpp runFromCache.h runFull.cpp runFull.h saveResults.cpp saveResults.h NOTAPoints.cpp NOTAPoints.h
g++ -Ialglib/src -std=c++11 -pthread -o cpv fit.cpp main.cpp process.cpp test.cpp modelState.cpp runFromCache.cpp \
runFull.cpp cachePaths.cpp saveResults.cpp nanoflann/KDTreeVectorOfVectorsAdaptor.h nanoflann/nanoflann.hpp \
nanoflann/WeightedL2MetricAdaptor.hpp NOTAPoints.cpp alglib.a
alglib.a:
cd alglib/src && $(MAKE)
clean:
find . -name '*.[oa]' -print | xargs /bin/rm -f