arm64: test: Add Makefile that was ignored commit.

Target commit:
  Test "Direct access to McKernel memory from Linux." on arm64
  Test "Scalable Vector Extension (SVE) support." on arm64

Change-Id: Ia9dc97c5cf0c4cf223423b4257745ea2101bee1d
This commit is contained in:
Shiratori, Takehiro
2019-03-20 11:42:33 +09:00
committed by Dominique Martinet
parent 08f817a654
commit 5e992bc195
2 changed files with 97 additions and 0 deletions

14
test/uti/arm64/Makefile Normal file
View File

@@ -0,0 +1,14 @@
# Makefile COPYRIGHT FUJITSU LIMITED 2019
CC = gcc
LDFLAGS = -Wall -lpthread
SRCS = $(shell ls CT*.c)
TARGET = $(SRCS:.c=)
all: $(TARGET)
test: all
./run.sh
clean:
rm -f $(TARGET)