Skip to content
Snippets Groups Projects
Commit 93c44594 authored by Saad Jbabdi's avatar Saad Jbabdi
Browse files

includes DP mixture model

parent 5644ad79
No related branches found
No related tags found
No related merge requests found
......@@ -2,11 +2,11 @@ include $(FSLCONFDIR)/default.mk
PROJNAME = fdt
USRINCFLAGS = -I${INC_NEWMAT} -I${INC_CPROB} -I${INC_PROB} -I${INC_ZLIB}
USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_CPROB} -L${LIB_PROB} -L${LIB_ZLIB}
USRINCFLAGS = -I${INC_NEWMAT} -I${INC_NEWRAN} -I${INC_CPROB} -I${INC_PROB} -I${INC_ZLIB}
USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_NEWRAN} -L${LIB_CPROB} -L${LIB_PROB} -L${LIB_ZLIB}
DLIBS = -lmeshclass -lbint -lnewimage -lutils -lmiscmaths -lnewmat -lfslio -lniftiio -lznz -lcprob -lprob -lm -lz
DLIBS = -lmeshclass -lbint -lnewimage -lutils -lmiscmaths -lnewmat -lnewran -lfslio -lniftiio -lznz -lcprob -lprob -lm -lz
#DLIBS = -lbint -lnewimage -lutils -lmiscmaths -lnewmat -lfslio -lniftiio -lznz -lcprob -lprob -lm -lz
......@@ -27,6 +27,7 @@ FMO=fdt_matrix_ops
INDEXER=indexer
TEST=testfile
ORDVEC=reorder_dyadic_vectors
DPM=dpm
DTIFITOBJS=dtifit.o dtifitOptions.o
......@@ -46,6 +47,7 @@ FMOOBJS=fdt_matrix_ops.o
INDEXEROBJS=indexer.o
TESTOBJS=testfile.o
ORDVECOBJS=reorder_dyadic_vectors.o heap.o
DPMOBJS=dpm.o dpmOptions.o
SGEBEDPOST =sge_bedpost sge_bedpost_postproc.sh sge_bedpost_preproc.sh sge_bedpost_single_slice.sh
SGEBEDPOSTX=sge_bedpostX sge_bedpostX_postproc.sh sge_bedpostX_preproc.sh sge_bedpostX_single_slice.sh
......@@ -114,6 +116,9 @@ ${TEST}: ${TESTOBJS}
${ORDVEC}: ${ORDVECOBJS}
${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${ORDVECOBJS} ${DLIBS}
${DPM}: ${DPMOBJS}
${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${DPMOBJS} ${DLIBS}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment