Plus characters ("++") in library name

2017-01-01 Thread code
Hello, I am trying to get my first open source project distribution set up to build with autotools (incl. libtool). It is a fairly simple C++ wrapper library around the Gnu "argp" options parser program. I would like to configure the build so as to produce a shared library which is installed

Re: Plus characters ("++") in library name

2017-01-02 Thread code
_tools_la_SOURCES = Hi Peter, That works OK, thanks very much! At least I was able to get it to make and install. Now I am having problems with "make dist" ... here are the errors from make: make[2]: Entering directory '/home/bob/code/C++/argpp_autoconf/src' make[2]:

Re: Plus characters ("++") in library name

2017-01-02 Thread code
On 2017-01-02 03:37, c...@roberthairgrove.com wrote: Now I am having problems with "make dist" ... here are the errors from make: make[2]: Entering directory '/home/bob/code/C++/argpp_autoconf/src' make[2]: *** No rule to make target 'argppbaseimpl.hpp', need

Re: Plus characters ("++") in library name

2017-01-02 Thread code
On 2017-01-02 03:37, c...@roberthairgrove.com wrote: Now I am having problems with "make dist" ... here are the errors from make: The "make dist" problem has been temporarily solved by adding a dist-hook target to Makefile.am like this: (in the top-level Makefile.am): ACLOCAL_AMFLAGS = -I m4