Skip to content

Commit

Permalink
Changes related to the 1.0.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rahogaboom committed Mar 18, 2017
1 parent d0ab9a0 commit 751f7f2
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ A Generic API for Bit Manipulation in C/C++
API:
```
/*
*==================================================================================================
*
Expand Down
Empty file modified bfix/cpp/bfix.cpp
100755 → 100644
Empty file.
Empty file modified bfix/cpp/bfix.hpp
100755 → 100644
Empty file.
10 changes: 2 additions & 8 deletions bfix/cpp/bfix.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ set -v

if [ "$1" == 'clean' ]
then
rm -f bfix.o
rm -f bfix_test.o
rm -f *.o
rm -f bfix_test
rm -f bfix_test.results
rm -f libbfix.a
rm -f libbfix.so
rm -f libbfix.so.1
rm -f libbfix.so.1.0.1
rm -f libbfix.*
rm -f scan-build.bfix.cpp.sa
exit
fi
Expand All @@ -35,12 +31,10 @@ export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
$CC -$O -c -fpic -ansi -pedantic -Wall -o bfix.o bfix.cpp

# build static library
rm -rf libbfix.a
ar rcv libbfix.a bfix.o
ar ts libbfix.a

# build dynamic library and set up links
rm -rf libbfix.so.1.0.1
$CC -$O -shared -Wl,-soname,libbfix.so.1 -o libbfix.so.1.0.1 bfix.o -lc
ln -sf libbfix.so.1.0.1 libbfix.so.1
ln -sf libbfix.so.1.0.1 libbfix.so
Expand Down

0 comments on commit 751f7f2

Please # to comment.