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

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

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

LIBS = -ltools2

LIB_PATH =
# -L.

INC_PATH =
# -I.

#
# Objects and headers
#

SOURCES = ijoin.cc multivalarraytest.cc Random.cc GetArg.cc StringTools.cc FileName.cc Timer.cc tooltests.cc

OBJECTS = Random.o GetArg.o StringTools.o FileName.o Timer.o

# ParamBound.o 
TARGETS = ijoin multivalarraytest tooltests

LIBRARY = libtools2.a

#
# Install rule
#

compile: all

# install: $(LIBRARY) $(TARGET)

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

#
# Call global Makefile to do the job.
#

include ../tools2/Makefile.global

