Files
mckernel/test/uti/arm64/Makefile
Shiratori, Takehiro 5e992bc195 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
2019-03-22 05:08:25 +00:00

15 lines
186 B
Makefile

# 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)