2014-05-01 22:53:52 +08:00
|
|
|
# Capstone Disassembly Engine
|
|
|
|
# Common functions used by Makefile & tests/Makefile
|
|
|
|
|
|
|
|
define compile
|
2019-07-29 14:15:05 +08:00
|
|
|
@$(CC) -MM -MP -MT $@ -MT $(@:.o=.d) $(CFLAGS) $< > $(@:.o=.d)
|
2014-05-01 22:53:52 +08:00
|
|
|
${CC} ${CFLAGS} -c $< -o $@
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define log
|
|
|
|
@printf " %-7s %s\n" "$(1)" "$(2)"
|
|
|
|
endef
|
|
|
|
|