radare2/libr/crypto/Makefile
2016-06-06 17:30:07 +02:00

21 lines
396 B
Makefile

NAME=r_crypto
DEPS=r_hash r_util
CFLAGS+=-DCORELIB
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
pre:
@if [ ! -e ${LIBSO} ]; then rm -f ${STATIC_OBJS} ; fi
plugins:
cd p && ${MAKE} all
include ../rules.mk