Home | History | Annotate | Download | only in arm
      1 # Sample Makefile for Capstone Disassembly Engine
      2 
      3 LIBNAME = capstone
      4 
      5 test_arm_regression: test_arm_regression.o
      6 	${CC} $< -O3 -Wall -l$(LIBNAME) -o $@
      7 
      8 %.o: %.c
      9 	${CC} -c -I../../include $< -o $@
     10 
     11 clean:
     12 	rm -rf *.o test_arm_regression
     13