# Last edited on 2011-06-06 21:21:11 by stolfi # Some tests of the package # NOTE: Non-standard Makefile PROG := diff PROGDIR := ../MODIFIED/src all: run-tests build: clean:: rm -f out-*.diff OUT_DIR := out DATA_FILES := \ in-bn1.txt in-bn2.txt \ in-lao.txt in-tzu.txt run-tests: ${PROGDIR}/${PROG} ${DATA_FILES} -${PROGDIR}/${PROG} \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu.diff -${PROGDIR}/${PROG} \ -C2 \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu-C2.diff -${PROGDIR}/${PROG} \ -U2 \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu-U2.diff -${PROGDIR}/${PROG} \ -y \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu-y.diff -${PROGDIR}/${PROG} \ -a -y \ in-bn1.txt \ in-bn2.txt \ > ${OUT_DIR}/bn1-bn2-a-y.diff -${PROGDIR}/${PROG} \ -y -W90 \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu-y-W90.diff -${PROGDIR}/${PROG} \ -y -W90 --suppress-common-lines \ in-lao.txt \ in-tzu.txt \ > ${OUT_DIR}/lao-tzu-y-W90-spcm.diff