#
# Test makefile for bsplines testing.
#
#


CC=g++


# debugging and profiling.
#CFLAGS= -Wall -g -pg
CFLAGS= -Wall -DNDEBUG


INCLUDE="../../include"

SRC=BSplines_timing.cxx


test:	${SRC}
	${CC} ${CFLAGS} -I ${INCLUDE} -o test ${SRC}




run:	test
	./test
	${GPROF}

#
# % gprof test test.gmon | less
#