From db4df86756153450aa6b57cb406e71f024d3e24f Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sat, 4 Nov 2023 11:16:51 +0000 Subject: [PATCH] Rename pakrd.a to libpakrd.a --- compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compile b/compile index 50f2468..64bbcfe 100755 --- a/compile +++ b/compile @@ -74,13 +74,13 @@ done if [[ $BUILD_TYPE == "debug" ]]; then CFLAGS+="-g " PCKR_OUT="pckr" - PAKRD_OUT="pakrd.a" + PAKRD_OUT="libpakrd.a" else mkdir dist cp ./include/pak.h dist CFLAGS+="-O3 " PCKR_OUT="dist/pckr" - PAKRD_OUT="dist/pakrd.a" + PAKRD_OUT="dist/libpakrd.a" fi