# Make the shared library used in the Java-calling-C FFI demo.
hello-ffi.so:	hello-ffi.c Makefile
	cc -shared -fPIC hello-ffi.c -o hello-ffi.so
