# Makefile for PCA 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 = -ldata -lmatrix -lutils -limgsrc

# Header Files

HDRS1 = MeanProfile.h PCAclass.h PCAdata.h default_pca_model.h HMetric.h

# ifeq ($(NO_DISPLAY),0)
# HDRS1 += ProfileSequence.h 
# endif

# Source Files

SRCS1 = MeanProfile.cc PCAclass.cc  HMetric.cc

# ifeq ($(NO_DISPLAY),0) 
# SRCS1 += ProfileSequence.cc
# endif

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

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

TESTSRCS = 
# sequencetest.cc

# Library names.

LIBNAME = libPCA.a
LIBDEBUG = libPCA_debug.a

include ../../generic_rules.mk

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

