Compare commits

..

No commits in common. "7b472cac4bf37f327b8100c4de5ca6baeb38f2d3" and "f8f08c7473e0ed126f2abcf90aab5f45e15ec4aa" have entirely different histories.

2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

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

View File

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