all:
	gcc -shared -Wl,-soname=liblibrary.so library.c -o liblibrary.so
	strip --strip-debug liblibrary.so
	gcc -Wl,-rpath=. binary.c -o binary -L. -llibrary
	strip --strip-all binary
