diff options
Diffstat (limited to 'chapter8/libtool.sh')
-rw-r--r-- | chapter8/libtool.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chapter8/libtool.sh b/chapter8/libtool.sh new file mode 100644 index 0000000..819a697 --- /dev/null +++ b/chapter8/libtool.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +./configure --prefix=/usr + +make + +make -j1 install + +rm -fv /usr/lib/libltdl.a |