summaryrefslogtreecommitdiffstats
path: root/tools/regression/lib/libmp/Makefile
diff options
context:
space:
mode:
authorsimon <simon@FreeBSD.org>2006-07-28 16:00:59 +0000
committersimon <simon@FreeBSD.org>2006-07-28 16:00:59 +0000
commitaa2529c0155cd13a19220e5ce17be7a511f54099 (patch)
treebf64a6106d4d746b963104ea6b5ebd5d288568bb /tools/regression/lib/libmp/Makefile
parentf422bef85576c0ca5e08dfff6768e4c8bd189cc6 (diff)
downloadFreeBSD-src-aa2529c0155cd13a19220e5ce17be7a511f54099.zip
FreeBSD-src-aa2529c0155cd13a19220e5ce17be7a511f54099.tar.gz
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.
Diffstat (limited to 'tools/regression/lib/libmp/Makefile')
-rw-r--r--tools/regression/lib/libmp/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/regression/lib/libmp/Makefile b/tools/regression/lib/libmp/Makefile
new file mode 100644
index 0000000..a6f60b6
--- /dev/null
+++ b/tools/regression/lib/libmp/Makefile
@@ -0,0 +1,12 @@
+# $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}
OpenPOWER on IntegriCloud