PROJNAME     = CubicInterp
SRCDIR       = code
OBJS         = CubicInterp.o
AFILES       = libCubicInterp.a
USRINCFLAGS  = -Icode
USRNVCCFLAGS = --relocatable-device-code true

include ${FSLCONFDIR}/default.mk

all: ${AFILES}

clean:
	rm -f ${OBJS} ${AFILES}

libCubicInterp.a: ${OBJS}
	${AR} -r $@ $^
