2014-05-01 22:53:52 +08:00
|
|
|
# Capstone Disassembly Engine
|
|
|
|
# Common functions used by Makefile & tests/Makefile
|
|
|
|
|
|
|
|
define compile
|
2023-05-19 19:22:57 +08:00
|
|
|
$(ifeq ($(MACOS_UNIVERSAL),no),
|
2023-05-20 02:50:46 +08:00
|
|
|
@$(CC) -MM -MP -MT $@ -MT $(@:.o=.d) $(CFLAGS) $< > $(@:.o=.d)
|
2023-05-19 19:22:57 +08:00
|
|
|
)
|
2014-05-01 22:53:52 +08:00
|
|
|
${CC} ${CFLAGS} -c $< -o $@
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define log
|
|
|
|
@printf " %-7s %s\n" "$(1)" "$(2)"
|
|
|
|
endef
|
|
|
|
|