# Makefile for the matrix library
#

include ../../generic.mk

#
# the included generic.mk defines the necessary things common to all source files
#
# here we only need to define further compiler (C/C++) and linker (LD)
#   arguments specific to the targets in this Makefile
#

CFLAGS =  

C++FLAGS = $(CFLAGS) 

LDFLAGS = 

HDRS1 = NagVector.h NagMatrix.h Point2.h KalmanFilterOneD.h KalmanFilterTwoD.h

SRCS1 = NagVector.cc NagMatrix.cc Point2.cc KalmanFilterOneD.cc KalmanFilterTwoD.cc

HDRS = ${HDRS1:S/^/..\//g}
SRCS = ${SRCS1:S/^/..\//g}

OBJS = ${SRCS1:.cc=.o}

TESTSRCS = 

LIBNAME = libmatrix.a
LIBDEBUG = libmatrix_debug.a

include ../../generic_rules.mk

# Include dependencies file
ifeq (.depend,$(wildcard .depend))
include .depend
endif

