Target commit: Test "Direct access to McKernel memory from Linux." on arm64 Test "Scalable Vector Extension (SVE) support." on arm64 Change-Id: Ia9dc97c5cf0c4cf223423b4257745ea2101bee1d
15 lines
186 B
Makefile
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)
|