autoreconf -fiv
./configure
make
make install
The above script will install a shared library on your machine. In my case
$ ls -al /usr/local/lib/libcvrpsep.*
-rwxr-xr-x@ 1 chkwon admin 225136 Jan 15 22:41 /usr/local/lib/libcvrpsep.0.dylib
lrwxr-xr-x@ 1 chkwon admin 18 Jan 15 22:41 /usr/local/lib/libcvrpsep.dylib -> libcvrpsep.0.dylib
-rwxr-xr-x@ 1 chkwon admin 941 Jan 15 22:41 /usr/local/lib/libcvrpsep.la
In Julia
import Libdl
LIB_CVRPSEP = Libdl.dlopen("/usr/local/lib/libcvrpsep.dylib")
The above script will install a shared library on your machine. In my case
In Julia