Compare commits

..

2 Commits

Author SHA1 Message Date
7b472cac4b Update .gitignore 2023-11-04 11:16:59 +00:00
db4df86756 Rename pakrd.a to libpakrd.a 2023-11-04 11:16:51 +00:00
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
.cache .cache
compile_commands.json compile_commands.json
pckr pckr
pakrd.a libpakrd.a
dist dist

View File

@ -74,13 +74,13 @@ done
if [[ $BUILD_TYPE == "debug" ]]; then if [[ $BUILD_TYPE == "debug" ]]; then
CFLAGS+="-g " CFLAGS+="-g "
PCKR_OUT="pckr" PCKR_OUT="pckr"
PAKRD_OUT="pakrd.a" PAKRD_OUT="libpakrd.a"
else else
mkdir dist mkdir dist
cp ./include/pak.h dist cp ./include/pak.h dist
CFLAGS+="-O3 " CFLAGS+="-O3 "
PCKR_OUT="dist/pckr" PCKR_OUT="dist/pckr"
PAKRD_OUT="dist/pakrd.a" PAKRD_OUT="dist/libpakrd.a"
fi fi