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