Files
white_patch_detect/white_patch_detect/capstone-master/functions.mk
2024-08-03 02:01:16 +08:00

13 lines
191 B
Makefile

# 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