You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
capstone/functions.mk

13 lines
191 B

3 years ago
# 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