freebsd-dev/tools/regression/lib/libmp/Makefile
Simon L. B. Nielsen 6e0d070709 Add a test program which performs some very basic tests of libmp(3).
It is by no means expected to perform a complete test of the library
for correctness, but is meant to test the API to make sure libmp (or
libcrypto) updates don't totally break the library.
2006-07-28 16:00:59 +00:00

13 lines
177 B
Makefile

# $FreeBSD$
TESTS= test-libmp
CFLAGS+= -g -Wall -lcrypto -lmp
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}