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

# Path to project directory.
UPDIR = .
# Path to subdirectories.
SUBDIRS = tools2 numerics lib consensus2 sequence covarna
#
# Libraries and paths (which are not defined globally).
#

LIBS =

LIB_PATH =

INC_PATH =

#
# Objects and headers
#

SOURCES =
OBJECTS =
TARGET  = 
LIBRARY =

#
# Install rule
#

start: subinstall subdirs

compile: all

install: subinstall

# subdirs: subinstall

#
# Call global Makefile to do the job.
#

include tools2/Makefile.global

