mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
13 lines
257 B
Makefile
13 lines
257 B
Makefile
|
|
CC=aarch64-linux-gnu-gcc
|
|
|
|
all: switchback.c linker.c linker.h
|
|
$CC -m64 -Wall -O -g -o switchback switchback.c linker.c \
|
|
../libvex_ppc64_linux.a
|
|
|
|
test_ppc:
|
|
$CC -Wall -m64 -mregnames -O -c test_ppc_jm1.c
|
|
|
|
clean:
|
|
rm -f switchback switchback.o linker.o
|