6e0d070709
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.
13 lines
177 B
Makefile
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}
|