diff options
Diffstat (limited to 'capstone/suite/arm/Makefile')
-rw-r--r-- | capstone/suite/arm/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/capstone/suite/arm/Makefile b/capstone/suite/arm/Makefile new file mode 100644 index 000000000..aaf4d05d7 --- /dev/null +++ b/capstone/suite/arm/Makefile @@ -0,0 +1,12 @@ +# Sample Makefile for Capstone Disassembly Engine + +LIBNAME = capstone + +test_arm_regression: test_arm_regression.o + ${CC} $< -O3 -Wall -l$(LIBNAME) -o $@ + +%.o: %.c + ${CC} -c -I../../include $< -o $@ + +clean: + rm -rf *.o test_arm_regression |