libsheepy

C lib for handling text files, strings and json like data structure with an object oriented system
git clone https://spartatek.se/git/libsheepy.git
Log | Files | Refs | README | LICENSE

commit 17bec3d856eefee1d1150ed04b5f50d05501ea95
parent 56de3c54fbcd88c2da91ace7e4df4314c2682648
Author: Remy Noulin <loader2x@gmail.com>
Date:   Mon, 20 Jan 2020 17:25:31 +0100

compile header files for lower compile times

build.sh | 7 +++++++
1 file changed, 7 insertions(+)

Diffstat:
Mbuild.sh | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/build.sh b/build.sh @@ -1,7 +1,14 @@ CC="gcc -g3 -std=gnu99 -fPIC -pipe -mrdrnd -pthread" +CC11="gcc -g3 -std=gnu11 -fPIC -pipe -mrdrnd -pthread" STATIC="ar -cvq" DYNAMIC="-shared" +echo "Compiling H files" +$CC11 ./release/libsheepyObject.h +$CC ./release/libsheepy.h +$CC ./release/json/recycleContainers.h +$CC ./release/libsheepySmall.h + echo "Compiling C files" $CC -c release/libsheepy.c $CC -c release/libsheepySmall.c