Home | History | Annotate | Download | only in capstone
      1 # Capstone Disassembly Engine
      2 # Common functions used by Makefile & tests/Makefile
      3 
      4 define compile
      5 	${CC} ${CFLAGS} -c $< -o $@
      6 endef
      7 
      8 
      9 define log
     10 	@printf "  %-7s %s\n" "$(1)" "$(2)"
     11 endef
     12 
     13