blob: 2a22b8ce9bcfca1aaab4113b6a318c12381ac534 [file] [log] [blame]
# Capstone Disassembly Engine
# Common functions used by Makefile & tests/Makefile
define compile
$(ifeq ($(MACOS_UNIVERSAL),no),
@$(CC) -MM -MP -MT $@ -MT $(@:.o=.d) $(CFLAGS) $< > $(@:.o=.d)
)
${CC} ${CFLAGS} -c $< -o $@
endef
define log
@printf " %-7s %s\n" "$(1)" "$(2)"
endef