X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2FMakefile;h=5db2f54e34db064e7a4aa550ce533a78cd09825b;hb=25c0504e3788f510af63125fc7e3c03dc8302e9c;hp=f96e7805ede19e41a4b6c51045346f8b323d1e0f;hpb=f69f31caeda734d6d9c8ab00e693671ac7512bea;p=cassiopeia.git diff --git a/lib/Makefile b/lib/Makefile index f96e780..5db2f54 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,10 +1,18 @@ LIB_SSL=openssl LIB_SSL_FILES= $(shell find ${LIB_SSL} -name "*.c") +LIB_COLL_FILES= $(shell find collisiondetect -name "*.c") + openssl: openssl/libcrypto.a +collisiondetect: collisiondetect/libdetectcoll.la + +collisiondetect/libdetectcoll.la: ${LIB_COLL_FILES} +# make -C collisiondetect +# echo $^ + openssl/libcrypto.a: ${LIB_SSL_FILES} - cd ${LIB_SSL} && ( [ -f Makefile ] || ./config -DPURIFY ) + cd ${LIB_SSL} && ( [ -f Makefile ] || ./config -DPURIFY no-md2 no-md4 no-rc4 no-ssl3 no-weak-ssl-ciphers no-unit-test ) ${MAKE} -C ${LIB_SSL} depend ${MAKE} -C ${LIB_SSL} ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))