mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-04 04:17:25 +00:00

- m68k assembler pending to fix some license issues with author * Added z80 assembler and disassembler - still not integrated with the plugin * Software licenses sucks
11 lines
242 B
Makefile
11 lines
242 B
Makefile
OBJ_M68K=asm_m68k.o
|
|
OBJ_M68K+=../arch/m68k/m68k_disasm/m68k_disasm.o
|
|
|
|
STATIC_OBJ+=${OBJ_M68K}
|
|
TARGET_M68K=asm_m68k.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_M68K}
|
|
|
|
${TARGET_M68K}: ${OBJ_M68K}
|
|
${CC} -shared ${CFLAGS} -o asm_m68k.${EXT_SO} ${OBJ_M68K}
|