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

all : plisttest

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

LIBS   = -lomt

plisttest : plisttest.cpp   \
	${INCDIR}/omt/common.h \
	${INCDIR}/omt/pcontainer.h \
	${INCDIR}/omt/plist.h
	${CCPP} -o plisttest -I${INCDIR} ${CFLAGS} plisttest.cpp

test :
	./plisttest

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