# Tests of libflt # Last edited on 2004-10-31 15:07:48 by stolfi PLATF = PLATF.IS.UNDEFINED TESTS = \ testnow \ testsort \ testsortspeed \ testtbfind all: for d in ${TESTS}; do \ ( cd $$d && make PLATF=${PLATF} all; ) ; \ done clean: for d in ${TESTS}; do \ ( cd $$d && make clean; ) ; \ done