xref: /aosp_15_r20/external/capstone/functions.mk (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1# Capstone Disassembly Engine
2# Common functions used by Makefile & tests/Makefile
3
4define compile
5	${CC} ${CFLAGS} -c $< -o $@
6endef
7
8
9define log
10	@printf "  %-7s %s\n" "$(1)" "$(2)"
11endef
12
13