diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-12 00:05:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:45:07 +0100 |
commit | 73f88ad2508c83c48505af96abaa2dfc449f4b40 (patch) | |
tree | e461b09c5d046fec0a4024d9346ffc3e50e75d26 /source4/lib/crypto | |
parent | 0b2780a6a424eea9989443d288435b248d653763 (diff) | |
download | samba-73f88ad2508c83c48505af96abaa2dfc449f4b40.tar.gz samba-73f88ad2508c83c48505af96abaa2dfc449f4b40.tar.bz2 samba-73f88ad2508c83c48505af96abaa2dfc449f4b40.zip |
r25931: Add config .mk file for crypto lib.
(This used to be commit 21ab43158f723069dd70fae43d780878c38ead31)
Diffstat (limited to 'source4/lib/crypto')
-rw-r--r-- | source4/lib/crypto/config.mk | 26 |
1 files changed, 26 insertions, 0 deletions
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 + + |