libtool/tests/depdemo
Gary V. Vaughan 8fad6be03e syntax-check: fix violations and implement sc_useless_braces_in_variable_derefs.
Until now, libtool sources have used braced variable names
seemingly at random! Almost always the braces are just noise, so
remove all the unnecessary ones.
* cfg.mk (sc_useless_braces_in_variable_derefs): New syntax
check rule to ensure we only reintroduce braced variable
dereferences if they are followed by a valid variable name
character.
build-aux/general.m4sh, build-aux/git-hooks/commit-msg,
build-aux/ltmain.m4sh, build-aux/options-parser, configure.ac,
libltdl/configure.ac, m4/libtool.m4, m4/ltdl.m4,
m4/ltoptions.m4, tests/defs.m4sh, tests/demo-nopic.test,
tests/depdemo/configure.ac, tests/flags.at, tests/link.test,
tests/objectlist.test, tests/quote.test, tests/static.at: Remove
spurious braces.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
2011-11-25 14:53:42 +07:00
..
l1 syntax-check: fix violations and implement sc_trailing_blank-non-rfc3676. 2011-11-17 19:22:35 +07:00
l2 syntax-check: fix violations and implement sc_trailing_blank-non-rfc3676. 2011-11-17 19:22:35 +07:00
l3 syntax-check: fix violations and implement sc_trailing_blank-non-rfc3676. 2011-11-17 19:22:35 +07:00
l4 syntax-check: fix violations and implement sc_trailing_blank-non-rfc3676. 2011-11-17 19:22:35 +07:00
.gitignore maint: tidy, sort and consolidate .gitignore files. 2011-10-22 18:36:16 +07:00
configure.ac syntax-check: fix violations and implement sc_useless_braces_in_variable_derefs. 2011-11-25 14:53:42 +07:00
main.c syntax-check: fix violations and re-enable sc_space_tab. 2011-11-17 19:22:14 +07:00
Makefile.am libtoolize: rename libltdl/m4' directory to standard m4'. 2011-11-17 17:51:14 +07:00
README spurious commit abort earlier :-( 2003-10-14 21:46:13 +00:00
sysdep.h syntax-check: fix violations and re-enable sc_useless_cpp_parens. 2011-11-17 19:22:16 +07:00

This is depdemo, an example package that uses GNU libtool with an
Automake-generated environment to build many interdependent libraries
and a test program.

There are four libraries: l1, l2, l3 and l4.
l1 depends on nothing.
l2 depends on l1.
l3 depends on l1 and l2.
l4 depends on l3 and libm.

The test program uses l1, l2 and l4.