From 73f88ad2508c83c48505af96abaa2dfc449f4b40 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 12 Nov 2007 00:05:10 +0100 Subject: r25931: Add config .mk file for crypto lib. (This used to be commit 21ab43158f723069dd70fae43d780878c38ead31) --- source4/lib/crypto/config.mk | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 source4/lib/crypto/config.mk (limited to 'source4/lib/crypto') diff --git a/source4/lib/crypto/config.mk b/source4/lib/crypto/config.mk new file mode 100644 index 0000000000..f7a8d20604 --- /dev/null +++ b/source4/lib/crypto/config.mk @@ -0,0 +1,26 @@ +############################## +# Start SUBSYSTEM LIBCRYPTO +[SUBSYSTEM::LIBCRYPTO] +OBJ_FILES = \ + crc32.o \ + md5.o \ + hmacmd5.o \ + md4.o \ + arcfour.o \ + sha1.o \ + hmacsha1.o +# End SUBSYSTEM LIBCRYPTO +############################## + +[MODULE::TORTURE_LIBCRYPTO] +OBJ_FILES = \ + md4test.o \ + md5test.o \ + hmacmd5test.o \ + sha1test.o \ + hmacsha1test.o +SUBSYSTEM = torture +PRIVATE_DEPENDENCIES = LIBCRYPTO +PRIVATE_PROTO_HEADER = test_proto.h + + -- cgit