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

all : phashtest

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

LIBS = -lomt

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

test :
	./phashtest 

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