aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/qemu-src/Makefile
blob: 1d2181183ca9fb9e024b13548f0422663b4f4252 (plain) (blame)
1
2
3
4
5
6
7
8
9
test: test.s
	as -o test.o test.s
	ld -o test test.o testc.o

trace: test
	qemu-x86_64 -singlestep -d nochain,cpu ./test 2>&1 | awk '/RIP/ { print $$1; }'

clean:
	$(RM) test test-bin test.o