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 .cache
compile_commands.json compile_commands.json
pckr pckr
libpakrd.a pakrd.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="libpakrd.a" PAKRD_OUT="pakrd.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/libpakrd.a" PAKRD_OUT="dist/pakrd.a"
fi fi