# Set the top of the tree
TOP             = ../..

# Include common definitions.
include $(TOP)/util/include/make.preamble

# The executable to build and the objects associated with it
BIN             = go.exe
OBJECTS 	= \
		  main.o \
		  $(NULL)

# The library to build and the objects associated with it
LIBTARG         = timeit
LIBOBJECTS 	= \
		  timeit.o \
		  $(NULL)

# Header files to install
HEADERS         = timeit.h


# Build it
include $(TOP)/util/include/make.tmpl
