# makefile for mdutil library
MODULE=mdutil

# to run this makefile locally, define relative position to toplevel directory
TOP=../..
include $(TOP)/make.include

# for building libraries
LIB_NAME=$(MODULE)
LIB_OPTS=
LIB_OBJS=mdutil ihash cmdline
LIB_LIBS=$(MDUTIL_LIBS)

# for building test binaries
TBIN_LIST=test_mdutil test_cmdline
TBIN_OPTS=
TBIN_OBJS=
TBIN_LIBS=-l$(MODULE) $(LIB_LIBS)

include $(TOP)/make.module
