aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/suite/arm/Makefile
blob: aaf4d05d720d443782b1ba8c25b6b404a25706ae (plain)
1
2
3
4
5
6
7
8
9
10
11
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