CC=gcc CFLAGS=-I./include all: example example: example.c $(CC) -fPIC -c example.c ld -Bshareable -o example.so example.o clean: rm -fr *.so rm -fr *.o