# Test Code Makefile Template for Open Web Middleware
# 	K.Saitoh, 12/08/2004

all : xbuftest

include ../../makefile.inc
include ../../mklomt.inc

LIBS   = -lomt

xbuftest : xbuftest.cpp   \
	${INCDIR}/omt/common.h \
	${INCDIR}/omt/xbuf.h\
	${LIBDIR}/libomt.a
	${CCPP} -o xbuftest -I${INCDIR} ${CFLAGS} xbuftest.cpp -L${LIBDIR} ${LIBS}

clean :
	${RM} -f *.o
	${RM} -f xbuftest
