PROJECT_COMPILER_FLAGS=$(FLAGS_DOPT) $(FLAGS_CV) $(FLAGS_MPI)

PROJECTNAME=utility

HDRS=application.h \
	basiclog.h \
	binarrayparser.h \
	casecontrolstatus.h \
	configurationparser.h \
	exception.h \
	executionlog.h \
	functors.h \
	generatereport.h \
	genobplookup.h \
	genolookup.h \
	genotypeparser.h \
	lineparser.h \
	random.h\
	rbtree.h \
	stringlookup.h \
	strings.h \
	typelookup.h \
	types.h \
	utility.h
#DEFINE THE sources
SRCS=application.cpp \
	basiclog.cpp \
	binarrayparser.cpp \
	casecontrolstatus.cpp \
	configurationparser.cpp \
	executionlog.cpp \
	genolookup.cpp \
    genobplookup.cpp \
	generatereport.cpp \
	genotypeparser.cpp \
	lineparser.cpp \
	random.cpp \
	stringlookup.cpp \
	strings.cpp \
	typelookup.cpp 	
	
#DEFINE THE ROOTPATH - This is the top level where there will be a make, dist, and others
ROOTPATH=../..

#OVERRIDE the path to sources if necessary
SRCPATHS=..

#indicate what the executable will be named
#EXENAME=ese

#list the projects which build into libraries
#LOCAL_LIBS=genetics utility

#Uncomment this line for executables
LIBRARY_MAKE=1

#Uncomment this line for test applications
IS_TEST=0



MAKEPATH=$(ROOTPATH)
include $(MAKEPATH)/make.base


OBJECTONLY: $(OBJS)
	$(SUPRESS)mkdir -p $(HEADERDEST)
	$(SUPRESS)cp $(SRCPATH)/*.h $(HEADERDEST)
	



