# makefile for mdio library
MODULE=mdio

# 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=mdio binres config error param paramxp pdata pdb pdbrec topo topoxp
LIB_LIBS=-lmdutil -lm $(MDIO_LIBS)

# for building test binaries
TBIN_LIST=test_mdio test_binres test_config test_pdb test_pdbrec
TBIN_OPTS=
TBIN_OBJS=
TBIN_LIBS=-l$(MODULE) $(LIB_LIBS)

include $(TOP)/make.module
