Only build the library

We only need the .so files, so only build the library
diff --git a/scripts/abi_check.py b/scripts/abi_check.py
index 30baadc..6c8be0d 100755
--- a/scripts/abi_check.py
+++ b/scripts/abi_check.py
@@ -175,7 +175,7 @@
         my_environment["SHARED"] = "1"
         my_environment["USE_CRYPTO_SUBMODULE"] = "1"
         make_process = subprocess.Popen(
-            self.make_command,
+            [self.make_command, "lib"],
             env=my_environment,
             cwd=git_worktree_path,
             stdout=subprocess.PIPE,