mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 08:01:04 +00:00
0c57a435fc
* Add const modifiers, fix function call style * Add checking and using dos_file_size * Fix number of arguments in load_bytes. * Add check for NE, LE and LX executables. * Fix function declaration for btree_traverse.
11 lines
210 B
Makefile
11 lines
210 B
Makefile
OBJ_MZ=bin_mz.o ../format/mz/mz.o
|
|
|
|
STATIC_OBJ+=${OBJ_MZ}
|
|
TARGET_MZ=bin_mz.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_MZ}
|
|
|
|
${TARGET_MZ}: ${OBJ_MZ}
|
|
-${CC} $(call libname, bin_mz) ${CFLAGS} \
|
|
${OBJ_MZ} $(LINK) $(LDFLAGS)
|