radare2/libr/bin/p/mz.mk
Oleksii Kuchma 0c57a435fc Rewrite MZ bin plugin
* 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.
2015-06-08 22:18:21 +02:00

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)