android13/external/capstone/functions.mk

13 lines
191 B
Makefile
Raw Normal View History

2024-06-22 08:45:49 -04:00
# Capstone Disassembly Engine
# Common functions used by Makefile & tests/Makefile
define compile
${CC} ${CFLAGS} -c $< -o $@
endef
define log
@printf " %-7s %s\n" "$(1)" "$(2)"
endef