radare2/libr/crypto/Makefile
Anton Kochkov ffe743ef39
Fix #4056 - rename DEPS to R2DEPS ##build (#17020)
* Rename DEPS to R2DEPS
* Cleanup of sys/build.sh
2020-06-12 10:49:28 +08:00

22 lines
414 B
Makefile

NAME=r_crypto
R2DEPS=r_hash r_util
CFLAGS+=-DR2_PLUGIN_INCORE
include ../config.mk
foo:
@for TARGET in ${LIBSO} ${LIBAR} plugins ; do ${MAKE} $$TARGET ; done
include ${STATIC_CRYPTO_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst crypto_,p/crypto_,$(STATIC_OBJ)))
OBJS=${STATIC_OBJS} crypto.o des.o
pre:
@if [ ! -e ${LIBSO} ]; then rm -f ${STATIC_OBJS} ; fi
plugins:
cd p && ${MAKE} all
include ../rules.mk