#!/bin/sh
gcc -o libshared.so shared.c -fPIC -shared
gcc -o test test.c -L. -lshared
LD_LIBRARY_PATH=. ./test