
default: all

liblib.so: lib.cc
	g++ -g -shared -fpic -o $@ -z nodefs lib.cc

test: test.c
	gcc -g -o test $< -ldl


all: liblib.so test

