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

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

