mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-18 14:16:00 +08:00
* ltmain.in (installed): new variable defined within a .la file,
so that libtool can now link already-installed libraries into a program. * NEWS: ditto * doc/libtool.texi (Linking executables): document it
This commit is contained in:
parent
cc297c844f
commit
6dee8297df
@ -1,3 +1,9 @@
|
||||
1998-11-19 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* mdemo-inst.test (libltdl): install it
|
||||
* mdemo-unst.test (libltdl): uninstall it
|
||||
* Makefile.am (TESTS): list ltdl-unst.test before mdemo-conf.test
|
||||
|
||||
1998-11-07 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* sh.test (test X): ensure that the double-quote supposed to be
|
||||
|
@ -5,8 +5,9 @@ AUTOMAKE_OPTIONS = gnits
|
||||
TESTS = demo-conf.test demo-make.test demo-exec.test \
|
||||
demo-inst.test demo-unst.test hardcode.test \
|
||||
ltdl-conf.test ltdl-make.test ltdl-inst.test \
|
||||
ltdl-unst.test \
|
||||
mdemo-conf.test mdemo-make.test mdemo-exec.test \
|
||||
mdemo-inst.test mdemo-unst.test ltdl-unst.test \
|
||||
mdemo-inst.test mdemo-unst.test \
|
||||
link.test link-2.test nomode.test \
|
||||
quote.test sh.test suffix.test
|
||||
|
||||
|
@ -17,6 +17,16 @@ else
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check that ltdl is installed.
|
||||
if test -f ../libltdl/libltdl.la; then
|
||||
cd ../libltdl || exit 1
|
||||
echo "= Running $make install in ../libltdl"
|
||||
$make install || exit 1
|
||||
else
|
||||
echo "You must run ltdl-make.test before $0" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Change to our build directory.
|
||||
cd ../mdemo || exit 1
|
||||
|
||||
|
@ -17,6 +17,12 @@ else
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test -f ../libltdl/libltdl.la; then
|
||||
cd ../libltdl || exit 1
|
||||
echo "= Running $make uninstall in ../libltdl"
|
||||
$make uninstall || exit 1
|
||||
fi
|
||||
|
||||
# Change to our build directory.
|
||||
cd ../mdemo || exit 1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user