mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
12 lines
331 B
Makefile
12 lines
331 B
Makefile
OBJ_AES_WRAP=crypto_aes_wrap.o
|
|
|
|
STATIC_OBJ+=${OBJ_AES_WRAP}
|
|
TARGET_AES_WRAP=crypto_aes_wrap.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_AES_WRAP}
|
|
DEPFLAGS=-L.. -lr_crypto -I../../../include
|
|
|
|
${TARGET_AES_WRAP}: ${OBJ_AES_WRAP}
|
|
${CC} $(call libname,crypto_aes_wrap) $(DEPFLAGS) \
|
|
${LDFLAGS} ${CFLAGS} -o ${TARGET_AES_WRAP} ${OBJ_AES_WRAP}
|