1 2CC=aarch64-linux-gnu-gcc 3 4all: switchback.c linker.c linker.h 5 $CC -m64 -Wall -O -g -o switchback switchback.c linker.c \ 6 ../libvex_ppc64_linux.a 7 8test_ppc: 9 $CC -Wall -m64 -mregnames -O -c test_ppc_jm1.c 10 11clean: 12 rm -f switchback switchback.o linker.o 13