#--*- makefile -*--------------------------------------------------------------
#
#   Standard makefile
#
#------------------------------------------------------------------------------

# Path to project directory.
UPDIR = ..
# Path to subdirectories.
SUBDIR=

#
# Libraries and paths (which are not defined globally).
#

LIBS = -lconsensus 
# -ltools
LIB_PATH = -L.

INC_PATH = -I.

#
# Objects and headers
#

SOURCES = correlogo.cc CorrectedMutualInformationScorer.cc Letter3D.cc \
	JVXMatrixWriter.cc Vrml2MatrixWriter.cc \
	stemhelp.cc colorFunctions.cc generalNumerics.cc Alignment.cc \
	Random.cc ResourceBundle.cc StringTools.cc AbstractMatrixWriter.cc pdbtools.cc
OBJECTS = CorrectedMutualInformationScorer.o Letter3D.o JVXMatrixWriter.o Vrml2MatrixWriter.o \
	stemhelp.o colorFunctions.o \
	generalNumerics.o Alignment.o  \
	Random.o ResourceBundle.o StringTools.o AbstractMatrixWriter.o pdbtools.o
TARGETS = correlogo
LIBRARY = libconsensus.a

#
# Install rule
#

compile: all

install: $(LIBRARY) $(TARGET)
	mv $(LIBRARY) $(UPDIR)/lib

#
# Call global Makefile to do the job.
#

include Makefile.global

