mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 06:55:01 +00:00
39f77a430f
- Many things are broken in this commit
9 lines
198 B
Makefile
9 lines
198 B
Makefile
OBJ_MACH=io_mach.o
|
|
|
|
STATIC_OBJ+=${OBJ_MACH}
|
|
TARGET_MACH=io_mach.${EXT_SO}
|
|
ALL_TARGETS+=${TARGET_MACH}
|
|
|
|
${TARGET_MACH}: ${OBJ_MACH}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_MACH} ${OBJ_MACH} -L.. -lr_io
|