radare2/libr/crypto/Makefile

21 lines
396 B
Makefile
Raw Normal View History

NAME=r_crypto
2016-06-06 15:30:07 +00:00
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:
2013-08-26 00:43:15 +00:00
@if [ ! -e ${LIBSO} ]; then rm -f ${STATIC_OBJS} ; fi
plugins:
cd p && ${MAKE} all
include ../rules.mk