From 751f7f25e8f87d6209be8d754dba4fded5482b56 Mon Sep 17 00:00:00 2001 From: Richard A Hogaboom Date: Sat, 18 Mar 2017 12:42:28 -0400 Subject: [PATCH] Changes related to the 1.0.5 release. --- README.md | 1 - bfix/cpp/bfix.cpp | 0 bfix/cpp/bfix.hpp | 0 bfix/cpp/bfix.mk | 10 ++-------- 4 files changed, 2 insertions(+), 9 deletions(-) mode change 100755 => 100644 bfix/cpp/bfix.cpp mode change 100755 => 100644 bfix/cpp/bfix.hpp diff --git a/README.md b/README.md index a9c9945..2aeed0a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ A Generic API for Bit Manipulation in C/C++ API: -``` /* *================================================================================================== * diff --git a/bfix/cpp/bfix.cpp b/bfix/cpp/bfix.cpp old mode 100755 new mode 100644 diff --git a/bfix/cpp/bfix.hpp b/bfix/cpp/bfix.hpp old mode 100755 new mode 100644 diff --git a/bfix/cpp/bfix.mk b/bfix/cpp/bfix.mk index 91cdee9..8b9e8c3 100755 --- a/bfix/cpp/bfix.mk +++ b/bfix/cpp/bfix.mk @@ -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 @@ -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