mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 02:41:08 +00:00
e8aababb86
* Add support for PIC Midrange & Enhanced Midrange ESIL support isn't perfect yet: memory mapped registers support is still missing. * Fix syntax error in libr/anal/meson.build
13 lines
309 B
Makefile
13 lines
309 B
Makefile
OBJ_PIC=asm_pic.o
|
|
OBJ_PIC+=../arch/pic/pic_baseline.o \
|
|
../arch/pic/pic_pic18.o \
|
|
../arch/pic/pic_midrange.o
|
|
|
|
STATIC_OBJ+=${OBJ_PIC}
|
|
TARGET_PIC=asm_pic.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_PIC}
|
|
|
|
${TARGET_PIC}: ${OBJ_PIC}
|
|
${CC} $(call libname,asm_pic) ${LDFLAGS} ${CFLAGS} -o asm_pic.${EXT_SO} ${OBJ_PIC}
|