capstone-sys 0.18.0

System bindings to the capstone disassembly library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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