11 lines
136 B
Makefile
11 lines
136 B
Makefile
# Makefile COPYRIGHT FUJITSU LIMITED 2020
|
|
|
|
all:
|
|
$(CC) 1400_arm64.c -o 1400_arm64 -Wall
|
|
|
|
test: all
|
|
./1400.sh
|
|
|
|
clean:
|
|
rm -f 1400_arm64
|