Skip to content
Snippets Groups Projects
Makefile 463 B
Newer Older
Mark Woolrich's avatar
Mark Woolrich committed
# A Makefile for the miscmaths class

include ${FSLDIR}/etc/default.mk

PROJNAME = miscmaths

USRINCFLAGS = -I${INCDIR}/utils -I${INCDIR}/newmat -I${INCDIR}/libprob

OBJS = miscmaths.o optimise.o miscprob.o kernel.o histogram.o base2z.o t2z.o f2z.o

LIBS = -lutils -lnewmat -lprob -lm

# The target "all" should ALWAYS be provided
#   typically it will just be another target name

all: libmiscmaths.a

libmiscmaths.a: ${OBJS}
	${AR} -r libmiscmaths.a ${OBJS}