all: test_Arm64
CC = gcc
INCLUDE = .
RMF = rm -f
OBJ_M = test.o

test_Arm64: test.o libezio.so.1.0.0 
	$(CC) test.o  libezio.so.1.0.0 -Wl,-rpath,./ -pthread -o test_Arm64
test.o: test.c
	$(CC)  test.c -c -pthread
clean:
	$(RMF) $(OBJ_M) 
.PHONY: all clean

