
LIBSO = libvpp.so

CFLAGS += -shared -fPIC

all: $(LIBSO)

libvpp.so: voidpp.o
	$(LD) -shared -o $@ $^
