Rename pakrd.a to libpakrd.a

This commit is contained in:
Abdelrahman Said 2023-11-04 11:16:51 +00:00
parent f8f08c7473
commit db4df86756

View File

@ -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