mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 13:51:16 +00:00
50fbf06b64
- rabin2 -p replaced by -f - Changed folder structure - Initial work in java plugin - Minor fixups --HG-- rename : libr/bin/p/elf/elf.c => libr/bin/format/elf/elf.c rename : libr/bin/p/elf/elf.h => libr/bin/format/elf/elf.h rename : libr/bin/p/elf/elf64.c => libr/bin/format/elf/elf64.c rename : libr/bin/p/elf/elf64.h => libr/bin/format/elf/elf64.h rename : libr/bin/p/elf/elf_specs.h => libr/bin/format/elf/elf_specs.h rename : libr/bin/p/mach0/mach0.c => libr/bin/format/mach0/mach0.c rename : libr/bin/p/mach0/mach0.h => libr/bin/format/mach0/mach0.h rename : libr/bin/p/pe/pe.c => libr/bin/format/pe/pe.c rename : libr/bin/p/pe/pe.h => libr/bin/format/pe/pe.h rename : libr/bin/p/pe/pe_specs.h => libr/bin/format/pe/pe_specs.h
12 lines
198 B
Makefile
12 lines
198 B
Makefile
OBJ_PE=bin_pe.o ../format/pe/pe.o
|
|
|
|
STATIC_OBJ+=${OBJ_PE}
|
|
TARGET_PE=bin_pe.so
|
|
|
|
ALL_TARGETS+=${TARGET_PE}
|
|
|
|
${TARGET_PE}: ${OBJ_PE}
|
|
${CC} ${CFLAGS} -o ${TARGET_PE} ${OBJ_PE}
|
|
@#strip -s ${TARGET_PE}
|
|
|